<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
		<id>http://stab.st-andrews.ac.uk/wiki/index.php?action=history&amp;feed=atom&amp;title=I2rda_m2rx</id>
		<title>I2rda m2rx - Revision history</title>
		<link rel="self" type="application/atom+xml" href="http://stab.st-andrews.ac.uk/wiki/index.php?action=history&amp;feed=atom&amp;title=I2rda_m2rx"/>
		<link rel="alternate" type="text/html" href="http://stab.st-andrews.ac.uk/wiki/index.php?title=I2rda_m2rx&amp;action=history"/>
		<updated>2026-04-30T11:11:44Z</updated>
		<subtitle>Revision history for this page on the wiki</subtitle>
		<generator>MediaWiki 1.30.0</generator>

	<entry>
		<id>http://stab.st-andrews.ac.uk/wiki/index.php?title=I2rda_m2rx&amp;diff=1428&amp;oldid=prev</id>
		<title>Rf: Rf moved page Mapping to Reference to I2rda m2rx</title>
		<link rel="alternate" type="text/html" href="http://stab.st-andrews.ac.uk/wiki/index.php?title=I2rda_m2rx&amp;diff=1428&amp;oldid=prev"/>
				<updated>2017-05-04T12:52:56Z</updated>
		
		<summary type="html">&lt;p&gt;Rf moved page &lt;a href=&quot;/wiki/index.php?title=Mapping_to_Reference&quot; title=&quot;Mapping to Reference&quot;&gt;Mapping to Reference&lt;/a&gt; to &lt;a href=&quot;/wiki/index.php?title=I2rda_m2rx&quot; title=&quot;I2rda m2rx&quot;&gt;I2rda m2rx&lt;/a&gt;&lt;/p&gt;
&lt;table class=&quot;diff diff-contentalign-left&quot; data-mw=&quot;interface&quot;&gt;
				&lt;tr style=&quot;vertical-align: top;&quot; lang=&quot;en&quot;&gt;
				&lt;td colspan=&quot;1&quot; style=&quot;background-color: white; color:black; text-align: center;&quot;&gt;← Older revision&lt;/td&gt;
				&lt;td colspan=&quot;1&quot; style=&quot;background-color: white; color:black; text-align: center;&quot;&gt;Revision as of 12:52, 4 May 2017&lt;/td&gt;
				&lt;/tr&gt;&lt;tr&gt;&lt;td colspan=&quot;2&quot; style=&quot;text-align: center;&quot; lang=&quot;en&quot;&gt;&lt;div class=&quot;mw-diff-empty&quot;&gt;(No difference)&lt;/div&gt;
&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;</summary>
		<author><name>Rf</name></author>	</entry>

	<entry>
		<id>http://stab.st-andrews.ac.uk/wiki/index.php?title=I2rda_m2rx&amp;diff=1352&amp;oldid=prev</id>
		<title>Rf: s1</title>
		<link rel="alternate" type="text/html" href="http://stab.st-andrews.ac.uk/wiki/index.php?title=I2rda_m2rx&amp;diff=1352&amp;oldid=prev"/>
				<updated>2017-04-08T23:23:07Z</updated>
		
		<summary type="html">&lt;p&gt;s1&lt;/p&gt;
&lt;p&gt;&lt;b&gt;New page&lt;/b&gt;&lt;/p&gt;&lt;div&gt;= Aims =&lt;br /&gt;
&lt;br /&gt;
Mapping to a reference genome is a vital step to generate counts and do differential gene expression thereafter. For RNA-Seq data it is important to choose an aligner which is splice aware.&lt;br /&gt;
&lt;br /&gt;
In this part you will learn to:&lt;br /&gt;
* align RNA-Seq reads to a reference genome&lt;br /&gt;
* calculate the mapping rate&lt;br /&gt;
&lt;br /&gt;
You will use the following software:&lt;br /&gt;
* TopHat2 v2.0.11: http://ccb.jhu.edu/software/tophat/index.shtml&lt;br /&gt;
* Bowtie2 v2.2.0: http://bowtie-bio.sourceforge.net/bowtie2/index.shtml&lt;br /&gt;
&lt;br /&gt;
The data set you&amp;#039;ll be using is downloaded from ENA (http://www.ebi.ac.uk/ena/data/view/SRP019027). The reads belong to sample SRR769316. The data set is tailored with respect to the time allocated for the exercise.&lt;br /&gt;
&lt;br /&gt;
Change directory:&lt;br /&gt;
&lt;br /&gt;
 cd /home/training/Data/04_Mapping_to_a_reference_genome&lt;br /&gt;
&lt;br /&gt;
Index the reference genome using Bowtie2:&lt;br /&gt;
&lt;br /&gt;
 cd Reference&lt;br /&gt;
 bowtie2-build mm10_chr19-1-20000000.fasta mm10_chr19-1-20000000&lt;br /&gt;
&lt;br /&gt;
Run the alignment using TopHat2:&lt;br /&gt;
&lt;br /&gt;
 cd ..&lt;br /&gt;
 tophat2 -o tophat2 --no-mixed \&lt;br /&gt;
 --rg-id Lane-1 --rg-sample sample1 --rg-center XYZ --rg-platform Illumina \&lt;br /&gt;
 -G Reference/mm10_chr19-1-20000000_Ensembl.gtf Reference/mm10_chr19-1-20000000 \&lt;br /&gt;
 /home/training/Data/03_Quality_control_and_data_preprocessing/Read_1.fastq \&lt;br /&gt;
 /home/training/Data/03_Quality_control_and_data_preprocessing/Read_2.fastq&lt;br /&gt;
&lt;br /&gt;
where:&lt;br /&gt;
* --no-mixed: For paired reads, only report read alignments if both reads in a pair can be mapped&lt;br /&gt;
* --rg-id: Read group ID&lt;br /&gt;
* --rg-sample: Sample ID&lt;br /&gt;
* --rg-center: Sequencing Centre name&lt;br /&gt;
* --rg-platform: Sequencing platform descriptor&lt;br /&gt;
* -G: Supply TopHat with a set of gene model annotations and/or known transcripts, as a GTF 2.2 or GFF3 formatted file.&lt;br /&gt;
* -o: Output directory&lt;br /&gt;
&lt;br /&gt;
Check the output of TopHat2:&lt;br /&gt;
&lt;br /&gt;
 cd tophat2&lt;br /&gt;
 ls&lt;br /&gt;
&lt;br /&gt;
Get the mapping rate:&lt;br /&gt;
&lt;br /&gt;
 cat align_summary.txt&lt;br /&gt;
&lt;br /&gt;
Get the number of reads mapped.&lt;br /&gt;
Run the alignment of filtered data using TopHat2&lt;br /&gt;
&lt;br /&gt;
 cd ..&lt;br /&gt;
 tophat2 -o tophat2_with_filtered_data --no-mixed \&lt;br /&gt;
 --rg-id Lane-1 --rg-sample sample1 --rg-center XYZ --rg-platform Illumina \&lt;br /&gt;
 -G Reference/mm10_chr19-1-20000000_Ensembl.gtf Reference/mm10_chr19-1-20000000 \&lt;br /&gt;
 /home/training/Data/03_Quality_control_and_data_preprocessing/Read_1_q30l50.fastq \&lt;br /&gt;
 /home/training/Data/03_Quality_control_and_data_preprocessing/Read_2_q30l50.fastq&lt;br /&gt;
&lt;br /&gt;
Check the output of TopHat2:&lt;br /&gt;
&lt;br /&gt;
 cd tophat2_with_filtered_data&lt;br /&gt;
 ls&lt;br /&gt;
&lt;br /&gt;
Get the mapping rate:&lt;br /&gt;
&lt;br /&gt;
 cat align_summary.txt&lt;br /&gt;
&lt;br /&gt;
Get the number of reads mapped.&lt;br /&gt;
* What difference does using the filtered data make?&lt;/div&gt;</summary>
		<author><name>Rf</name></author>	</entry>

	</feed>