8000 Release Release v1.6.0.0 · stschiff/sequenceTools · GitHub
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

Release v1.6.0.0

Latest
Compare
Choose a tag to compare
@github-actions github-actions released this 29 Jan 16:33
· 11 commits to master since this release

This release adds the Variant Call Format (VCF) to its possible output options. To select it, just pass the option --vcf. The file is output to the standard-out. So you can run something like

samtools mpileup ... | pileupCaller --randomHaploid -f <snp_file> --vcf > output.vcf

You can also zip the output, by chaining it through gzip -c:

samtools mpileup ... | pileupCaller --randomHaploid -f <snp_file> --vcf | gzip -c > output.vcf

Please take a look at the README, which has been updated.

0