-
Notifications
You must be signed in to change notification settings - Fork 722
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
Adjusted CNVKIT/BATCH for germline mode #1719
Conversation
// somatic_mode cram_input | ||
if (tumor_cram && normal_cram){ | ||
""" | ||
samtools view -T $fasta $fai_reference $tumor -@ $task.cpus -o $tumor_out |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
you don't need the funky ##idx## thing?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
not if the fasta_fai
is passed along with the fasta
reference genome and both files are stored locally
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
ok I'll ask about this on slack
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
if both files are not local and are accessed instead via an https://, s3:// or other URL then the "##idx##" would be needed.
PR checklist
This PR enables the
cnvkit/batch
module to run ingermline mode
in addition totumor_only
andsomatic mode
.versions.yml
file.label
PROFILE=docker pytest --tag <MODULE> --symlink --keep-workflow-wd --git-aware
PROFILE=singularity pytest --tag <MODULE> --symlink --keep-workflow-wd --git-aware
PROFILE=conda pytest --tag <MODULE> --symlink --keep-workflow-wd --git-aware