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
712447cc
Commit
712447cc
authored
Sep 23, 2021
by
cbedet1
Browse files
addition of Kallisto quantif
parent
852340ed
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/RNAseq_tp.nf
View file @
712447cc
...
...
@@ -6,6 +6,7 @@ log.info "bed file : ${params.bed}"
include { fastp } from "./nf_modules/fastp/main.nf"
include { fasta_from_bed } from "./nf_modules/bedtools/main.nf"
include { index_fasta; mapping_fastq } from './nf_modules/kallisto/main.nf'
params.fastq = "data/fastq/*_{1,2}.fastq"
...
...
@@ -24,6 +25,9 @@ channel
workflow {
fastp(fastq_files)
fasta_from_bed(fasta_files, bed_files)
index_fasta(fasta_from_bed.out.fasta)
mapping_fastq(index_fasta.out.index.collect(), fastp.out.fastq) //.collect pour réutiliser l'index pour chaque fastq file
}
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