Skip to content
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

TODO: v1.0.0 Release #13

Open
skchronicles opened this issue Aug 23, 2022 · 1 comment
Open

TODO: v1.0.0 Release #13

skchronicles opened this issue Aug 23, 2022 · 1 comment
Assignees

Comments

@skchronicles
Copy link
Contributor

Germline Pipeline

  • Only run DV and its subsequent rules with norm samples
    • If pairs file (only relevant to the somatic pipeline, i.e. provided --call-somatic), then pull out normal samples
    • If --call-somatic is not provided then all samples are assumed to be normals
    • If --call-somatic is provided and no pairs file, then all samples are assumed to be tumors

This will prevent any unnecessary compute and will reduce overall runtime.

Fix strelka issue

Filtering from GATK is not working for strelka, resolved by adding these two commands before it goes to norm & splitting:

bcftools concat -Ov -a  \
    -D somatic.snvs.vcf.gz somatic.indels.vcf.gz \
    -o strelka.merge.indel.snps.vcf
java -Xmx16g -cp /data/OpenOmics/references/genome-seek/hmftools/purple_v3.2.jar com.hartwig.hmftools.purple.tools.AnnotateStrelkaWithAllelicDepth -in strelka.merge.indel.snps.vcf -out strelka.merge.indel.snps.annotated.vcf.gz

Next fix is for spliting TUMOR from strelka. When splitting we cannot use "-c1" for strelka as we don't have the tag in vcf file to check for --min-ac/--max-ac. We need to update the tumor splitting command for strelka to remove -c1:

bcftools view -s TUMOR  -Oz -o strelka.tumor.vcf.gz \
    strelka.merge.indel.snps.annotated.filtered.vcf.gz

Tumor only

Need to update rule all so that the strelka and muse output files do not get created for tumor-only samples

@skchronicles
Copy link
Contributor Author

Add support for WES data

  • Update the pipeline to accept a targets BED file as a command-line option
  • Update rules to work with WES input
  • Add sequenza and Control-FREEC to CNV docker image
  • Update rule all targets so tools that do not support WES aren't run

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants