Skip to content

Commit

Permalink
formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
JMF47 committed Nov 12, 2015
1 parent 1f8ec50 commit f787e1c
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 6 deletions.
4 changes: 2 additions & 2 deletions README.html
Original file line number Diff line number Diff line change
Expand Up @@ -65,8 +65,8 @@ <h1>Introduction and Preprocessing</h1>
<p>Two sample pipelines for preprocessing are as follows:</p>
<ol style="list-style-type: decimal">
<li><strong>Pipeline 1:</strong> <em>TopHat2</em> (1) + <em>Stringtie</em> (2,3)</li>
<li><em>TopHat2</em> [<a href="http://bioinformatics.oxfordjournals.org/content/25/9/1105.abstract">Trapnell et al. (2009)</a>] is built on the ultrafast short read mapping program <em>Bowtie</em> and aligns RNA-Seq reads to a genome while identifying exonic splice junctions. Sample command <code>tophat2 -G reference.gff -o outputDirectory -p 6 indexDirectory reads</code></li>
<li><em>Stringtie</em> [<a href="http://www.nature.com/nbt/journal/v33/n3/full/nbt.3122.html">M. Pertea et al. (2015)</a>] is a highly efficient assembler for RNA-Seq alignments using a novel network flow algorithm. It simultaneously assembles and quantifies expression levels for the features of the transcriptome in a Ballgown readable format (by using the option -B). One command to <em>Stringtie</em> satisfies steps 2 and 3 above.</li>
<li><em>TopHat2</em> [<a href="http://bioinformatics.oxfordjournals.org/content/25/9/1105.abstract">Trapnell et al. (2009)</a>] is built on the ultrafast short read mapping program <em>Bowtie</em> and aligns RNA-Seq reads to a genome while identifying exonic splice junctions. Sample command: | <code>tophat2 -G reference.gff -o outputDirectory -p 6 referenceIndex reads</code></li>
<li><em>Stringtie</em> [<a href="http://www.nature.com/nbt/journal/v33/n3/full/nbt.3122.html">M. Pertea et al. (2015)</a>] is a highly efficient assembler for RNA-Seq alignments using a novel network flow algorithm. It simultaneously assembles and quantifies expression levels for the features of the transcriptome in a Ballgown readable format (by using the option -B). One command to <em>Stringtie</em> satisfies steps 2 and 3 above. Sample command: | <code>stringtie -B -G reference.gff -p 6 accepted_hits.bam -o stringtie.gff</code></li>
<li><strong>Pipeline 2:</strong> <em>TopHat2</em> (1) + <em>Cufflinks</em> (2) + <em>Tablemaker</em> (3)</li>
<li><em>Tophat2</em> produces alignments as noted above.</li>
<li><em>Cufflinks</em> [<a href="http://dx.doi.org/10.1038/nbt.1621">Trapnell et al. (2010)</a>] also assembles transcriptomes from RNA-Seq data and quantifies their expression.</li>
Expand Down
6 changes: 2 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,10 +14,8 @@ Before using the Ballgown R package, a few preprocessing steps are necessary:
Two sample pipelines for preprocessing are as follows:

1. **Pipeline 1:** _TopHat2_ (1) + _Stringtie_ (2,3)
1. _TopHat2_ [<a href="http://bioinformatics.oxfordjournals.org/content/25/9/1105.abstract">Trapnell et al. (2009)</a>] is built on the ultrafast short read mapping program _Bowtie_ and aligns RNA-Seq reads to a genome while identifying exonic splice junctions. Sample command:
+ ``` tophat2 -G reference.gff -o outputDirectory -p 6 referenceIndex reads ```
2. _Stringtie_ [<a href="http://www.nature.com/nbt/journal/v33/n3/full/nbt.3122.html">M. Pertea et al. (2015)</a>] is a highly efficient assembler for RNA-Seq alignments using a novel network flow algorithm. It simultaneously assembles and quantifies expression levels for the features of the transcriptome in a Ballgown readable format (by using the option -B). One command to _Stringtie_ satisfies steps 2 and 3 above. Sample command:
+ ``` stringtie -B -G reference.gff -p 6 accepted_hits.bam -o stringtie.gff ```
1. _TopHat2_ [<a href="http://bioinformatics.oxfordjournals.org/content/25/9/1105.abstract">Trapnell et al. (2009)</a>] is built on the ultrafast short read mapping program _Bowtie_ and aligns RNA-Seq reads to a genome while identifying exonic splice junctions. Sample command: ``` tophat2 -G reference.gff -o outputDirectory -p 6 referenceIndex reads ```
2. _Stringtie_ [<a href="http://www.nature.com/nbt/journal/v33/n3/full/nbt.3122.html">M. Pertea et al. (2015)</a>] is a highly efficient assembler for RNA-Seq alignments using a novel network flow algorithm. It simultaneously assembles and quantifies expression levels for the features of the transcriptome in a Ballgown readable format (by using the option -B). One command to _Stringtie_ satisfies steps 2 and 3 above. Sample command: ``` stringtie -B -G reference.gff -p 6 accepted_hits.bam -o stringtie.gff ```
2. **Pipeline 2:** _TopHat2_ (1) + _Cufflinks_ (2) + _Tablemaker_ (3)
1. _Tophat2_ produces alignments as noted above.
2. _Cufflinks_ [<a href="http://dx.doi.org/10.1038/nbt.1621">Trapnell et al. (2010)</a>] also assembles transcriptomes from RNA-Seq data and quantifies their expression.
Expand Down

0 comments on commit f787e1c

Please sign in to comment.