meta data for this page
This is an old revision of the document!
FASTQC Analysis
So, you will be working with Illumina sequence data, and you are interested in data quality. This is one way to look at the data.
- Identify the read set that you want to analyse.
Make sure that you have a fastq format
- Install FASTQC using Anaconda
- Open the html output files with any browser. With your results try to answer the following questions:
- What kind of information do you get after running FASTQC?
- Try to make a statement about the quality of your sequencing run.
- Take a look at the overrepresented sequences, and overrepresented Kmers report. Interpret the results and reconcile with your expectation. In case you have no expectation, make sure to discuss with the tutors.
- Perform an end trimming of the sequencing reads using Trimmomatic. What kind of information do you need to perform this analysis step? The Trimmomatic page may provide some initial help.<WRAP>
<hidden Spoiler> - First you need to extract the sequence of the adapter from FASTQC and save as a fastafile using a texteditor like nano:
touch adaptator.fasta nano adaptator.fasta
- It should have the format you know from fasta files with a /1 for the forward adapter and a /2 for the reverse. The prefix has to be the same in both identifiers.
>Truseq/1 forward adapter-sequence from FASTQC >Truseq/2 reverse adapter-sequence from FASTQC
- Make sure that you are in the conda environment that contains Trimmomatic and document the command you use to run it. Discuss with the group or the tutors if you are unsure about the parameters.