Skip to content

Commit

Permalink
Merge pull request #14 from eipm/combine-pindel-fix
Browse files Browse the repository at this point in the history
Remove combine pindel typo
  • Loading branch information
fernandezevn authored Dec 9, 2020
2 parents cd51703 + b1a9b9f commit 0cf9e41
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions combine_pindel_vcfs.sh
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
DOI=$1
FOIS=( $(ls $DOI/*vcf | egrep -e '(pindel_LI|pindel_RP|pindel_SI|pindel_TD|pindel_INV|pindel_INT_final|pindel_D)') )
FINAL_FILE=$DOI"/pindel_all.vcf"
VCFS_STR=for i in "$(FOIS[*]}"; do echo "$i"; done
vcf-concat -p $VCFS_STR > $FINAL_FILE
VCFS_STR=for i in "${FOIS[*]}"; do echo "$i"; done
vcf-concat -p $VCFS_STR > $FINAL_FILE

0 comments on commit 0cf9e41

Please sign in to comment.