This branch uses Alignment + count method (STAR + featureCounts) to quantify transcript abundance, if you want the newer quasi-mapping method with Salmon, change to salmon branch
git clone git@github.com:AndreaMariani-AM/RNAseq_snakemake.git
git checkout salmon
Snakemake-based RNA-seq pipeline to be run in our PBS-based HPC using singularity containers. The singularity image that is used to run this pipeline is created from this docker container.
The following files are located inside the folder configuration
. In this folder you will find the files with raw data paths (units.tsv
), sample metadata (samples.tsv
), cluster configuration (cluster.yaml
) and pipeline parameters -alignment, peak calling...- (config.yaml
).
Paths to raw data are located in the file units.tsv
. The file has the following structure:
sample | lane | fq1 | fq2 |
---|---|---|---|
name-of-sample | name-of-lane-or-resequencing | path/to/forward.fastq | path/to/reverse.fastq |
-
The first field correspond to the sample name. This field has to be the same as the sample name that is specified in the
samples.tsv
file (see below). It is recommended to NOT use underscores in the name of the samples, dashed are prefered. I still don't understand why sometimes I get errors if I use them so before fixing I strongly recommend to use dashes instead. -
The second field corresponds to
lane
. The idea of this field is to group fastq files corresponding to the same sample (or to samples that have to be merged). For example, if 1 sample arrived in 2 different lanes from a PE experiment, in total there will be 4 fastqs (2 forward and 2 reverse). In this case, one should enter the same sample 2 times, putting in thelane
field the corresponding lanes (lane1 and lane2, for example). Actually one can write any word in this field, the idea is to group fastqs from the same sample. All the entries with the same name in thesample
field with differentlane
will be merged in the same fastq. Here an example of how it would be with 1 sample that arrived in 2 lanes:
sample | lane | fq1 | fq2 |
---|---|---|---|
foo | lane1 | path/to/forward_lane1.fastq | path/to/reverse_lane1.fastq |
foo | lane2 | path/to/forward_lane2.fastq | path/to/reverse_lane2.fastq |
Here I am using lane1 and lane2 for consistency and making things more clear, but the following would also work:
sample | lane | fq1 | fq2 |
---|---|---|---|
foo | potato | path/to/forward_lane1.fastq | path/to/reverse_lane1.fastq |
foo | checazzo | path/to/forward_lane2.fastq | path/to/reverse_lane2.fastq |
- Finally the last 2 fields
fq1
andfq2
correspond to the paths to the fastq files.fq1
is the FORWARD read andfq2
the REVERSE. The order is very important because they will be sent in that order to the aligner.
All metadata and information regarding every sample is located in samples.tsv
. The file has the following structure:
sample | condition |
---|---|
name-of-sample | group for differential expression |
sample
: The name of the samples. They have to match those inunits.tsv
(1 entry per sample).condition
: This will be the grouping for the differential expression analysis. Samples with the same condition will be treated as biological replicates by DESeq2.
An example of table would be:
sample | condition |
---|---|
A-rep1 | WT |
A-rep2 | WT |
B-rep1 | KO |
B-rep2 | KO |
If desired, this sample can be expanded by adding new columns (like genotype, batch effect, etc). By now, doing so will just allow users to do PCA plots labeling the samples based on these columns, but in the future we plan to expand this to be able to design complex model matrices to use as input to DESeq2.
In this configuration folder (I say this because there's in another folder a file with the same name) there is the file config.yaml
. This file contains the configuration of the software and parameters used in the pipeline. Modify them as you wish. Check always that you are using the correct genome files corresponding to the version that you want to use.
Also here you will have to design the contrasts to perfrom differential expression analyses in the diffexp
section of the yaml file. Define the desired adjusted p-values and log2 fold changes that will be used as thresholds to define differentially expressed genes. You can also use as an additional threshold the FPKM levels across the conditions that are compared. For example, if you don't want to consider as differentially expressed those genes that have less than 1 FPKM in both conditions, indipendently of the p-value and fold change, set fpkm to 1.
Multiple threshold values can be set, so the pipeline will automatically create volcano plots, enrichment analyses and filtered tables for each combination of the thresholds that have been set.
cluster.json
contains the per rule cluster parameters (ncpus, ram, walltime...). It can be modified as desired. In the future I want to remove this file in favour of the new snakemake profiles system (see below), but I still need to understand a little bit better how it works and how to properly do the migration.
In Snakemake 4.1 snakemake profiles were introduced. They are supposed to substitute the classic cluster.json file and make the execution of snakemake more simple. The parameters that will be passed to snakemake (i.e: --cluster, --use-singularity...) now are inside a yaml file (config.yaml
) inside the profile folder (in the case of this repository is snakemake_profile
). The config.yaml
inside snakemake_profile
contains the parameters passed to snakemake. So if you were executing snakemake as snakemake --cluster qsub --use-singularity
the new config.yaml
would be like this:
cluster: qsub
use-singularity: true
Once you have all the configuration files as desired, it's time to execute the pipeline. For that you have to execute the execute_pipeline.sh
script, followed by the name of the rule that you want to execute. If no rule is given it will automatically execute the rule all
(which would execute the standard pipeline). Examples:
./execute_pipeline.sh all
is equivalent to
./execute_pipeline.sh
Other rules:
- all_downsampled: execute the same pipeline but downsample the count matrix prior to DESeq2 based based on the sample with less counts. A seed is set in config.yaml to allow reproducibility.
./execute_pipeline.sh all_downsampled
You can modify these rules and add new all rules to get just the files that you are interested in.
- Migrate 100% to snakemake profiles and stop using the
cluster.yaml
configuration.