Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
LBMC
Palladino
RNAseq_nextflow
Commits
3de4d8de
Verified
Commit
3de4d8de
authored
May 28, 2021
by
Laurent Modolo
Browse files
example_marseq.nf: add illumina adaptor removal
parent
6bddba37
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/example_marseq.nf
View file @
3de4d8de
...
...
@@ -4,6 +4,7 @@ nextflow.enable.dsl=2
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(
kb_protocol: "marsseq",
count_out: "quantification/"
...
...
@@ -57,6 +58,7 @@ channel
.set { config_files }
workflow {
adaptor_removal(fastq_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)
}
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment