Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

module load bedtools

Code Block

AlikeFinding alike mutations.

intersectBed -a bowtie.vcf -b bwa.vcf > intersect.vcf

Code Block

UniqueFinding unique mutations for each mapper.

subtractBed -a bowtie.vcf -b intersect.vcf > unique_bowtie.vcf
subtractBed -a bwa.vcf -b intersect.vcf > unique_bowtie.vcf

...