Line 167: | Line 167: | ||
<div class="body"> | <div class="body"> | ||
<div class="parallax"></div> | <div class="parallax"></div> | ||
− | + | < <div class="igem-icon"><a href="https://2018.igem.org/Team:Uppsala"><img src="https://static.igem.org/mediawiki/2018/c/cf/T--Uppsala--WormBusterLogo_Black.png"></a></div> | |
− | + | ||
<div class ="scroll-down-button"> | <div class ="scroll-down-button"> | ||
<section id="section02" class="demo"> | <section id="section02" class="demo"> |
Revision as of 23:59, 16 October 2018
Bioinformatics
After a succesfull sequencing has been performed and you’re left with raw data containing millions and millions (and millions) of lines of base sequences, all of this needs to be processed and interpreted. This is where the interdisciplinary field of bioinformatics comes in. A vast range of software tools are available, tailored to different kinds of analysis as well as being unique to the different sequencing methods being used.
Most of the tools we used were available through the free website Usegalaxy.org which as well let us do the processing on their servers. Because we also made use of nanopore sequencing, tailored tools used for the MinION data were available from their community hub which could be run from a terminal window.
Experiment
We decided to create our bioinformatics pipeline from scratch. This was not an easy task however as nanopore technology is novel and many of the available pipelines are tailored to illumina sequencing. Generally though, a basic transcriptomics pipeline looks like the following: Alignment to a reference genome, gene counting and differential gene expression [1]. However a couple of data processing steps were needed for the nanopore data beforehand such as demultiplexing and adapter trimming.
Demultiplexing and adapter trimming
Because the sequencing itself runs pooled samples containing both the barcoded cultured- and control-group samples, the data produced needs to be demultiplexed i.e separated into files containing the reads from respective groups. Because the barcodes used to fingerprint each group is made up of its own base sequence, this also had to be removed or ”trimmed” from the data, leaving us with the pure mRNA sequences. This was achieved using a free nanopore community tool called porechop.
Genome alignment
The base sequences needs to be aligned to the reference genome of the sequenced species in question for the downstream data analysis. This is important because we want to know where each sequence actually lies in the genome and which genes they correspond to. Genome alignment was done using another community tool called minimap2.
Gene counting
Gene counting basically means that you count how many times each mRNA sequence (aligned over a gene from the previous step) occurs. This in turn directly correlates to the amount of up- or down-regulation of that particular gene. A lot of different tools were available for gene counting but ”featureCounts” was chosen through galaxy.
After the differential gene expression analysis is done the data was filtered twice, one time for the best adjusted P-value and subsequently for the highest (meaning the most significant) fold changes. Left were a couple of candidate genes which could be easily identified by their gene ID through various databases such as NCBI.
Result
The transcriptomics pipeline was tried out and validated using read files available from the internet. The files consisted of two datasets of E. Coli (triplicates) cultured in regular LB and a sugar solution respectively.
The results after searching for the genes in the NCBI database showed that the most expressed gene from the sugar-cultured E. Coli was shown to be involved in a type of sugar system, proving that the pipeline was indeed working.
The resuts from our runs unfortunately did not produce as good results as seen above. Due to the major issues with sequencing and actually generating enough data, it can be seen in figure 6 what kind of effects it had. Judging by the adjusted p-values it is clear that even though the genes can indeed be identified the statistical significance is extremely uncertain (the minimal accepted threshold is an adjusted p-value of <= 0.05). Any up-or down regulation of fold-change of interest was not able to be identified either. Looking at these errors it can be assumed that no major change in fold-change as well as low significancy is due to simply not enough data being generated from the prior sequencing step. Because of these facts no gene could be identified as a possible candidate for our reporter system.
References
[1] Galaxyproject, 2018. Reference-based RNA-Seq data analysis https://galaxyproject.github.io/training-material/topics/transcriptomics/tutorials/ref-based/tutorial.html Date of visit 2018-10-15