-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
6c4f44b
commit c3ef1a9
Showing
5 changed files
with
49 additions
and
33 deletions.
There are no files selected for viewing
Submodule BioNextflow
updated
4 files
+2 −2 | subworkflows/snp_calling/clairS.nf | |
+85 −0 | subworkflows/snp_calling/clairS_TO.nf | |
+1 −1 | subworkflows/var_annotation/snpeff.nf | |
+72 −0 | subworkflows/var_annotation/snpsift.nf |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,18 +1,26 @@ | ||
input_path: "${projectDir}/test_dataset/" | ||
comparison: "${projectDir}/comparison.tsv" | ||
|
||
##reference: "${projectDir}/GRCh38.primary_assembly.genome.fa" | ||
reference: "/db/gencode/human/release_38/GRCh38.primary_assembly.genome.fa.gz" | ||
snpeff_db: "GRCh38.105" | ||
clinvar_db: "${projectDir}/clinvar/clinvar_20240630.vcf.gz" | ||
clinvar_db_idx: "${projectDir}/clinvar/clinvar_20240630.vcf.gz.tbi" | ||
output: "${projectDir}/output_dna" | ||
pars_tools: "${projectDir}/tools_opt.tsv" | ||
|
||
# flows | ||
clairS: "YES" | ||
# clair flows | ||
## clairS for comparing tumor/normal samples | ||
clairS: "NO" | ||
comparison: "${projectDir}/comparison.tsv" | ||
## clairS-TO (tumor only) | ||
clairS_TO: "YES" | ||
|
||
## sniffles for structural variants | ||
sniffles: "YES" | ||
|
||
## Commmon flows | ||
filter: "YES" | ||
annotation: "YES" | ||
|
||
# epinano plots | ||
hook: "" | ||
email: "" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
#flows tool extrapars | ||
sniffles sniffles "--tandem-repeats ${projectDir}/anno/human_GRCh38_no_alt_analysis_set.trf.bed" | ||
sniffles_multi sniffles "" | ||
clairS clairS "-p ont_r9_guppy" | ||
clairS clairS "" | ||
clairS_TO clairS_TO "-p ont_r10_dorado_sup_5khz" | ||
filter bcftools-view "-f PASS" | ||
common snpEff "" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters