A proof of concept of a RNA-Seq pipeline intended to show Nextflow scripting and reproducibility capabilities.
-
Login to UFRC
-
Load Singularity
ml singularity
-
Pull the required Docker image in /home//singularity as shown below:
singularity pull docker://nextflow/rnatoy:1.3`
-
Upload GitHub repository in /home//rnatoy as shown below:
-
Modify main.nf file: line 33-36 as shown below:
params.reads = "/home//rnatoy/data/ggal/*_{1,2}.fq" params.annot = "/home//rnatoy/data/ggal/ggal_1_48850000_49020000.bed.gff" params.genome = "/home//rnatoy/data/ggal/ggal_1_48850000_49020000.Ggal71.500bpflank.fa" params.outdir = 'results'
- Change directory to /home//rnatoy as shown below:
cd /home//rnatoy
- Run the nextflow script inside the singularity image as shown below:
nextflow run main.nf -with-singularity /home/djlemas/singularity/rnatoy-1.3.simg