-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
modified: bcbio.templates.exome.yaml
- Loading branch information
naumenko-sa
committed
May 10, 2017
1 parent
a686aa0
commit 2a4a2a1
Showing
2 changed files
with
20 additions
and
1 deletion.
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 |
---|---|---|
@@ -0,0 +1,19 @@ | ||
#!/bin/bash | ||
|
||
#renames old runs of bcbio to annotated-decomposed.vcf.gz form | ||
|
||
if [ -z $family ]; | ||
then | ||
family=$1 | ||
fi | ||
|
||
suffix="annotated-decomposed.vcf.gz" | ||
|
||
mv ${family}-ensemble.vcf.gz ${family}-ensemble-${suffix} | ||
mv ${family}-ensemble.vcf.gz.tbi ${family}-ensemble-${suffix}.tbi | ||
|
||
for tool in {platypus,freebayes,gatk-haplotype}; | ||
do | ||
mv ${family}-${tool}.decomposed.vcf.gz ${family}-${tool}-${suffix} | ||
mv ${family}-${tool}.decomposed.vcf.gz.tbi ${family}-${tool}-${suffix}.tbi | ||
done |
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 |
---|---|---|
|
@@ -26,7 +26,7 @@ details: | |
batch: 166 | ||
resources: | ||
default: | ||
cores: 5 | ||
cores: 7 | ||
jvm_opts: | ||
- -Xms750m | ||
- -Xmx7000m | ||
|