Changes between Version 2 and Version 3 of SOPs/vcf_manipulation
- Timestamp:
- 10/16/13 10:19:14 (11 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
SOPs/vcf_manipulation
v2 v3 4 4 * samtools' mpileup+bcftools: 5 5 {{{ 6 # One file of mapped reads 6 7 samtools mpileup -uf indexed_genome My_mapped_reads.bam | bcftools view -bvcg - >| My_mapped_reads.raw.bcf 8 # Multiple files of mapped reads 7 9 samtools mpileup -uf indexed_genome *.bam | bcftools view -bvcg - >| Multiple_samples.raw.bcf 8 10 }}}