generated from sib-swiss/course_website_template
-
Notifications
You must be signed in to change notification settings - Fork 2
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
Geert van Geest
committed
Nov 29, 2024
1 parent
1956fcb
commit 2160d21
Showing
7 changed files
with
42 additions
and
5 deletions.
There are no files selected for viewing
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,3 +1,13 @@ | ||
.DS_Store | ||
site | ||
env/ | ||
data/ | ||
.cache/ | ||
.bash_history | ||
.bashrc | ||
.conda/ | ||
.config/ | ||
.lesshst | ||
.local/ | ||
.profile | ||
extensions/ |
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 |
---|---|---|
|
@@ -8,5 +8,5 @@ dependencies: | |
- snpeff>=5.0 | ||
- gatk4=4.5 | ||
- r-base | ||
- cnvkit | ||
- cnvkit>=0.9.10 | ||
- bcftools |
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
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 |
---|---|---|
@@ -0,0 +1,11 @@ | ||
#!/usr/bin/env bash | ||
|
||
ALIGNDIR=/config/data/alignments | ||
REFDIR=/config/data/reference | ||
RESOURCEDIR=/config/data/resources | ||
VARIANTDIR=/config/data/variants | ||
|
||
gatk FilterMutectCalls \ | ||
-R "$REFDIR"/ref_genome.fa \ | ||
-V "$VARIANTDIR"/somatic.vcf.gz \ | ||
-O "$VARIANTDIR"/somatic.filtered.vcf.gz |
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 |
---|---|---|
@@ -0,0 +1,14 @@ | ||
#!/usr/bin/env bash | ||
|
||
ALIGNDIR=/config/data/alignments | ||
REFDIR=/config/data/reference | ||
RESOURCEDIR=/config/data/resources | ||
VARIANTDIR=/config/data/variants | ||
|
||
cnvkit.py batch "$ALIGNDIR"/tumor.rg.md.bam \ | ||
--normal "$ALIGNDIR"/normal.rg.md.bam \ | ||
--targets "$REFDIR"/exome_regions.bed.interval_list \ | ||
--fasta "$REFDIR"/ref_genome.fa \ | ||
--annotate "$RESOURCEDIR"/refFlat.txt.gz \ | ||
--output-reference "$VARIANTDIR"/reference.cnn \ | ||
--output-dir "$VARIANTDIR"/cnvkit/ |