0

BOWTIE maps test reads to a reference genome.

Basically it's a String comparison.

Reference String could be a million base pair made by combinations of A C T & G, also the test reads,

Now what is the criteria to call a test read as match, mutation, SPM mismatch, cigar etc

I am thinking in a perspective that, if I have to write my on BOWTIE in the language I like, what must be the test read, reference genome comparison rules I need to follow.

AGS
  • 14,288
  • 5
  • 52
  • 67
user2458922
  • 1,691
  • 1
  • 17
  • 37

1 Answers1

0

Bowtie has two main alignment modes: -v mode and -n mode. -v mode doesn't care about quality scores while -n cares for the seeding region. Bowtie requires you to specify the maximum number of mismatches you allow and the maximum number of locations each read can map to. Bowtie2 considers gaps. BTW, the reads not only contain ACGT but also N's.

Code42
  • 2,292
  • 1
  • 17
  • 22