Skip to content
Snippets Groups Projects
Verified Commit 3de4d8de authored by Laurent Modolo's avatar Laurent Modolo
Browse files

example_marseq.nf: add illumina adaptor removal

parent 6bddba37
No related branches found
No related tags found
No related merge requests found
...@@ -4,6 +4,7 @@ nextflow.enable.dsl=2 ...@@ -4,6 +4,7 @@ nextflow.enable.dsl=2
Testing pipeline for marseq scRNASeq analysis Testing pipeline for marseq scRNASeq analysis
*/ */
include { adaptor_removal} from "./nf_modules/cutadapt/main.nf"
include { index_fasta; count } from "./nf_modules/kb/main.nf" addParams( include { index_fasta; count } from "./nf_modules/kb/main.nf" addParams(
kb_protocol: "marsseq", kb_protocol: "marsseq",
count_out: "quantification/" count_out: "quantification/"
...@@ -57,6 +58,7 @@ channel ...@@ -57,6 +58,7 @@ channel
.set { config_files } .set { config_files }
workflow { workflow {
adaptor_removal(fastq_files)
index_fasta(fasta_files, cdna_files, gtf_files) index_fasta(fasta_files, cdna_files, gtf_files)
count(index_fasta.out.index, fastq_files, index_fasta.out.t2g, whitelist_files, config_files) count(index_fasta.out.index, adaptor_removal.out.fastq, index_fasta.out.t2g, whitelist_files, config_files)
} }
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment