Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
RNAseq_nextflow
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
GitLab community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
LBMC
Palladino
RNAseq_nextflow
Commits
48498cec
Commit
48498cec
authored
Mar 4, 2022
by
cbedet
Browse files
Options
Downloads
Plain Diff
Merge branch 'dev_carine' into 'master'
fix bug (index bam between star and htseq) See merge request
!2
parents
14b28e7e
bdd4cdf9
Branches
Branches containing commit
Tags
v0.2.9
Tags containing commit
1 merge request
!2
fix bug (index bam between star and htseq)
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
src/RNAseq_cec.nf
+9
-1
9 additions, 1 deletion
src/RNAseq_cec.nf
with
9 additions
and
1 deletion
src/RNAseq_cec.nf
+
9
−
1
View file @
48498cec
...
@@ -26,6 +26,11 @@ include {
...
@@ -26,6 +26,11 @@ include {
star_mapping_fastq_out:
"star_bam/"
star_mapping_fastq_out:
"star_bam/"
)
)
include
{
index_bam
}
from
'./nf_modules/samtools/main.nf'
addParams
(
htseq_out:
"star_bam/"
)
include
{
htseq_count_with_gff
include
{
htseq_count_with_gff
}
from
'./nf_modules/htseq/main.nf'
addParams
(
}
from
'./nf_modules/htseq/main.nf'
addParams
(
htseq_out:
"htseq_count/"
htseq_out:
"htseq_count/"
...
@@ -87,8 +92,11 @@ workflow {
...
@@ -87,8 +92,11 @@ workflow {
fastp
.
out
.
fastq
,
fastp
.
out
.
fastq
,
)
)
//// index bam
index_bam
(
star_mapping_fastq
.
out
.
bam
)
htseq_count_with_gff
(
htseq_count_with_gff
(
star_mapping_fastq
.
out
.
bam
,
index_bam
.
out
.
bam
_idx
,
genome_gff3_file
genome_gff3_file
)
)
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment