meta data for this page
This is an old revision of the document!
jump to: Search / User Tools / Main Content / Change Content Width
Teaching
This is an old revision of the document!
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.
PairedEndLayout
PairedEndLayout
In the case you are having a paired end library layout, is convention that you analyse forward and reverse reads separately, since their quality typically varies considerably. You can use samtools to split your readset into forward and reverse reads in the case you are having both in one file
ReadMore
ReadMore
After installing FASTQC in its own conda environment, activate the new environment with the corresponding conda command. Now you can call fastqc by simply typing
fastqc filename.fq -o /path/to/output/directory
This will generate a html file which you can copy to your local computer using scp. We made a short video that explains you how to do this. </hidden>
<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.