Advertisement
Guest User

Untitled

a guest
Jun 20th, 2019
68
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.11 KB | None | 0 0
  1. bcftools filter -e 'TYPE="snp"' input1.vcf -O v -o output1.filter.vcf
  2. bcftools filter -e 'TYPE="snp"' input2.vcf -O v -o output2.filter.vcf
  3. bcftools filter -e 'TYPE="snp"' input3.vcf -O v -o output3.filter.vcf
  4. bcftools filter -e 'TYPE="snp"' input4.vcf -O v -o output4.filter.vcf
  5. bcftools filter -e 'TYPE="snp"' input5.vcf -O v -o output5.filter.vcf
  6.  
  7. [***@dev1 raw_reads]$ cat parallel.input
  8.  
  9. input1.vcf
  10. output1.filter.vcf
  11. input2.vcf
  12. output2.filter.vcf
  13. input3.vcf
  14. output3.filter.vcf
  15. input4.vcf
  16. output4.filter.vcf
  17. input5.vcf
  18. output5.filter.vcf
  19.  
  20. cat parallel.input | parallel -j 3 -k --max-args=2 --joblog parallel.log "bcftools filter -e 'TYPE="snp"' {1} -O v -o {2}"
  21.  
  22. [filter.c:2278 filters_init1] Error: the tag "snp" is not defined in the VCF header
  23. [filter.c:2278 filters_init1] Error: the tag "snp" is not defined in the VCF header
  24. [filter.c:2278 filters_init1] Error: the tag "snp" is not defined in the VCF header
  25. [filter.c:2278 filters_init1] Error: the tag "snp" is not defined in the VCF header
  26. [filter.c:2278 filters_init1] Error: the tag "snp" is not defined in the VCF header
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement