Skip to content

Commit

Permalink
gatk-launch > gatk to be compatible with bcbio 1.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
naumenko-sa committed Sep 10, 2018
1 parent d005ab1 commit 3e226ac
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion vcf.ensemble.getCALLERS.sh
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

bname=`basename $1 .vcf.gz`

gatk-launch VariantsToTable \
gatk VariantsToTable \
-R $2 -V $1 \
-F CHROM -F POS -F REF -F ALT -F CALLERS \
-O $bname.table
Expand Down
2 changes: 1 addition & 1 deletion vcf.freebayes.getAO.sh
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ bname=`basename $1 .subset.vcf.gz`

if [ -e $1 ] && [ -e $2 ]
then
gatk-launch VariantsToTable \
gatk VariantsToTable \
-R $2 \
-V $1 \
-F CHROM -F POS -F REF -F ALT -F DP -GF DP -GF AO \
Expand Down
2 changes: 1 addition & 1 deletion vcf.gatk.get_depth.sh
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ bname=`basename $1 .subset.vcf.gz`

if [ -e $1 ]
then
gatk-launch VariantsToTable \
gatk VariantsToTable \
-R $2 \
-V $1 \
-F CHROM -F POS -F REF -F ALT -F DP -GF DP -GF AD -GF GT \
Expand Down
2 changes: 1 addition & 1 deletion vcf.platypus.getNV.sh
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ bname=`basename $1 .subset.vcf.gz`

if [ -e $1 ]
then
gatk-launch VariantsToTable \
gatk VariantsToTable \
-R $2 \
-V $1 \
-F CHROM -F POS -F REF -F ALT -F TC -GF NR -GF NV \
Expand Down
2 changes: 1 addition & 1 deletion vcf.samtools.get_depth.sh
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ bname=`basename $1 .vcf.gz`

if [ -e $1 ]
then
gatk-launch VariantsToTable \
gatk VariantsToTable \
-T VariantsToTable \
-R $2 \
-V $1 \
Expand Down

0 comments on commit 3e226ac

Please sign in to comment.