├── .gitignore ├── LICENSE ├── README.md ├── data └── ggal │ ├── gut_1.fq │ ├── gut_2.fq │ ├── liver_1.fq │ ├── liver_2.fq │ ├── lung_1.fq │ ├── lung_2.fq │ └── transcriptome.fa ├── env.yml ├── misc └── launch-ec2.sh ├── nextflow.config ├── rnaseq-flow.nf ├── rnaseq-tasks.nf ├── script1.nf ├── script2.nf ├── script3.nf ├── script4.nf ├── script5.nf ├── script6.nf ├── script7.nf └── script8.nf /.gitignore: -------------------------------------------------------------------------------- 1 | .nextflow* 2 | work 3 | results -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seqeralabs/nextflow-tutorial/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seqeralabs/nextflow-tutorial/HEAD/README.md -------------------------------------------------------------------------------- /data/ggal/gut_1.fq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seqeralabs/nextflow-tutorial/HEAD/data/ggal/gut_1.fq -------------------------------------------------------------------------------- /data/ggal/gut_2.fq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seqeralabs/nextflow-tutorial/HEAD/data/ggal/gut_2.fq -------------------------------------------------------------------------------- /data/ggal/liver_1.fq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seqeralabs/nextflow-tutorial/HEAD/data/ggal/liver_1.fq -------------------------------------------------------------------------------- /data/ggal/liver_2.fq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seqeralabs/nextflow-tutorial/HEAD/data/ggal/liver_2.fq -------------------------------------------------------------------------------- /data/ggal/lung_1.fq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seqeralabs/nextflow-tutorial/HEAD/data/ggal/lung_1.fq -------------------------------------------------------------------------------- /data/ggal/lung_2.fq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seqeralabs/nextflow-tutorial/HEAD/data/ggal/lung_2.fq -------------------------------------------------------------------------------- /data/ggal/transcriptome.fa: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seqeralabs/nextflow-tutorial/HEAD/data/ggal/transcriptome.fa -------------------------------------------------------------------------------- /env.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seqeralabs/nextflow-tutorial/HEAD/env.yml -------------------------------------------------------------------------------- /misc/launch-ec2.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seqeralabs/nextflow-tutorial/HEAD/misc/launch-ec2.sh -------------------------------------------------------------------------------- /nextflow.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seqeralabs/nextflow-tutorial/HEAD/nextflow.config -------------------------------------------------------------------------------- /rnaseq-flow.nf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seqeralabs/nextflow-tutorial/HEAD/rnaseq-flow.nf -------------------------------------------------------------------------------- /rnaseq-tasks.nf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seqeralabs/nextflow-tutorial/HEAD/rnaseq-tasks.nf -------------------------------------------------------------------------------- /script1.nf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seqeralabs/nextflow-tutorial/HEAD/script1.nf -------------------------------------------------------------------------------- /script2.nf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seqeralabs/nextflow-tutorial/HEAD/script2.nf -------------------------------------------------------------------------------- /script3.nf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seqeralabs/nextflow-tutorial/HEAD/script3.nf -------------------------------------------------------------------------------- /script4.nf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seqeralabs/nextflow-tutorial/HEAD/script4.nf -------------------------------------------------------------------------------- /script5.nf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seqeralabs/nextflow-tutorial/HEAD/script5.nf -------------------------------------------------------------------------------- /script6.nf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seqeralabs/nextflow-tutorial/HEAD/script6.nf -------------------------------------------------------------------------------- /script7.nf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seqeralabs/nextflow-tutorial/HEAD/script7.nf -------------------------------------------------------------------------------- /script8.nf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seqeralabs/nextflow-tutorial/HEAD/script8.nf --------------------------------------------------------------------------------