Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

Aim:

  • Assess the quality of raw datasets

  • Define quality trimming parameters prior running the complete RNAseq gene profiling pipeline

Run RNA-seq QC check

The pipeline requires preparing at least 2 files:

  • Metadata file (samplesheet.csv) thatspecifies the name of the samples, location of FASTQ files ('Read 1' and ‘Read 2’), and strandedness (forward, reverse, or auto. Note: auto is used when the strandedness of the data is unknown)

  • PBS Pro script (launch_nf-core_RNAseq_QC.pbs) with instructions to run the pipeline

Create the metadata file (samplesheet.csv):

Change to the data folder directory:

...

Code Block
cp /work/training/2024/rnaseq/scripts/create_samplesheet_nf-core_RNAseq_SEdata.sh $HOME/workshop/20242/session4_RNAseq/data/mouse
  • Note: you could replace ‘$HOME/workshop/data’ with “.” A dot indicates ‘current directory’ and will copy the file to the directory where you are currently located

View the content of the script:

Code Block
cat create_samplesheet_nf-core_RNAseq_SEdata.sh

Example for Single-End data (when only ‘Read 1’ is available):

...

NOTE: modify ‘read1_extension’ as appropriate for your data. For example: _1.fastq.gz or _R1_001.fastq.gz or _R1.fq.gz , etc

If working with paired end data: add --read2_extension to the script (see below)

Example for Paired-End data (when ‘Read 1’ and ‘Read2’ are available) - Copy available script if working with PE data:

Code Block
cat /work/training/2024/rnaseq/scripts/create_samplesheet_nf-core_RNAseq_SEdata.sh

...

Copy the PBS Pro script for QC (launch_nf-core_RNAseq_QC.pbs)

Copy and paste the code below to the terminal:

Code Block
cp $HOME/workshop/2024-2/session4_RNAseq/data/mouse/samplesheet.csv $HOME/workshop/2024-2/session4_RNAseq/runs/run1_QC
cp $HOME/workshop/2024-2/session4_RNAseq/scripts/launch_nf-core_RNAseq_QC.pbs $HOME/workshop/2024-2/session4_RNAseq/runs/run1_QC
cd $HOME/workshop/2024-2/session4_RNAseq/runs/run1_QC
  • Line 1: Copy the samplesheet.csv file to the working directory

  • Line 2: move to the working directory

  • Line 3: copy the launch_nf-core_RNAseq_QC.pbs submission script to the working directory

View the content of the launch_nf-core_RNAseq_QC.pbs script:

Code Block
cat launch_nf-core_RNAseq_QC.pbs

...

  • We recommend running the nextflow nf-core/rnaseq pipeline once and then assessing the fastqc results folder to assess if sequence biases are present in the 5'-end and 3'-end ends of the sequences.

  • Version 3.12.0 allows running the pipeline to do quality assessment only, without any alignment, read counting, or trimming.

Submitting the job

Once you have created the folder for the run, the samplesheet.csv file, and launch.pbs, you are ready to submit the job to the HPC scheduler:

...

Once the pipeline has finished running - Assess the QC report:

NOTE: To proceed, you need to be on QUT’s WiFi network or signed via VPN.

To browse the working folder in the HPC type in the file finder:

...

Inspect the precomputed QC reports

FastQC:

  • location: /work/training/2024/rnaseq/runs/run2_QC/results/fastqc

  • Quality control metrics to assess - an individual html report is produced for each sample:

    • Per Base Sequence Quality: Measures the quality score across all bases at each position in the reads, providing a visual summary of how the quality varies across the length of the reads.

    • Per Sequence Quality Scores: Shows the distribution of mean quality scores for all reads, highlighting if the dataset contains many low-quality reads.

    • Per Base Sequence Content: Evaluates the proportion of each nucleotide (A, T, C, G) at every base position, revealing any biases in nucleotide composition

    • Per Base GC Content: Measures the percentage of GC content per base, checking for consistency with the expected GC content for the species or sample type.

    • Per Sequence GC Content: Examines the overall distribution of GC content across all reads, helping to detect unusual GC bias or contamination

    • Per Base N Content: Reports the proportion of uncalled bases (“N”s) at each position in the reads, indicating sequencing or base-calling issues

    • Sequence Length Distribution: Displays the distribution of read lengths, which can help assess whether the sequencing run generated reads of the expected length.

    • Sequence Duplication Levels: Identifies the level of duplicate sequences in the dataset, which can indicate issues such as overamplification in PCR or technical biases.

    • Overrepresented Sequences: Detects sequences that appear more frequently than expected, which might indicate contamination, adapters, or other technical artifacts.

    • Adapter Content: Checks for the presence of sequencing adapters that were not properly removed during preprocessing, which can affect downstream analysis.

    • K-mer Content: Identifies enriched k-mers (short nucleotide sequences) that occur more frequently than expected, possibly indicating contamination or other biases.

  • MultiQC:

    • Combined FastQC results for all samples:

      • Per Base Sequence Quality: Overview of quality scores across bases.

      • Per Sequence Quality Scores: Mean quality scores of reads.

      • Per Base Sequence Content: Distribution of nucleotide composition across reads.

      • Per Sequence GC Content: GC content distribution.

      • Sequence Length Distribution: The length of reads in the data.

      • Adapter Content: Detection of sequencing adapters.

Hit: define how many nucleotides should be trimmed from the 5'-end and/or 3-end regions of the FASTQ reads.