Difference between revisions of "Sequence-based mutation analysis TSD Journal"

From Bioinformatikpedia
m (#Where)
Line 2: Line 2:
   
 
To improve on the readability of the journal, only the basic steps and program calls are outlined here, while the full source code is linked to like [https://gist.github.com/2919934 this].
 
To improve on the readability of the journal, only the basic steps and program calls are outlined here, while the full source code is linked to like [https://gist.github.com/2919934 this].
  +
  +
== Substitution matrices ==
  +
Quantiles can be easily calculated in R, using
  +
<source lang="bash">
  +
quantile(m) #Where m is a matrix
  +
</source>

Revision as of 20:40, 14 June 2012

Back to results.

To improve on the readability of the journal, only the basic steps and program calls are outlined here, while the full source code is linked to like this.

Substitution matrices

Quantiles can be easily calculated in R, using <source lang="bash"> quantile(m) #Where m is a matrix </source>