-
Notifications
You must be signed in to change notification settings - Fork 0
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
GATK Cohort Calling Stash Not Working #47
Comments
@imtiyazhariyani , let me check this out. Its not immediately apparent whats going on. |
Fixed - there were a few issues with the cohort calling rule.
Should be
|
Here's the whole thing.
|
Oops that was fairly straightforward! It works now, thank you @jerowe |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Tried running the GATK Cohort workflow from BioSAILS without running it per chromosome. The workflow executes and produces an s batch script but with no rules. Samples are found. However, the following line is displayed when I run the biox command:
"Path::Tiny paths require defined, positive-length parts at /scratch/gencore/.local/easybuild/software/gencore_dev/1.0/lib/perl5/site_perl/5.22.0/BioX/Workflow/Command/run/Rules/Directives/Types/Path.pm line 183."
Below is the yml script:
`---
global:
# Initial Directory Setup
- indir: "data/analysis_imtiyaz"
- outdir: "data/analysis_imtiyaz/cohort"
# indir/outdir is a chained variable
it gets changed within a rule
rules:
- stash_samples:
local:
- override_process: 1
- create_outdir: 0
process: |-
{
use File::Glob;
use Cwd;
my @glob = glob(cwd().'/'. $self->sample_glob);
$self->stash->{sample_files} = @glob;
($SILENTLY);
}
`
The text was updated successfully, but these errors were encountered: