Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
C
chipseq_analysis
Manage
Activity
Members
Labels
Plan
Issues
19
Issue boards
Milestones
Iterations
Requirements
Code
Merge requests
3
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Container Registry
Operate
Environments
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
BICF
Astrocyte
chipseq_analysis
Commits
6ae5df58
There was a problem fetching the pipeline stages.
Commit
6ae5df58
authored
6 years ago
by
Venkat Malladi
Browse files
Options
Downloads
Patches
Plain Diff
Fix syntax.
parent
8e0a5bd9
1 merge request
!23
Resolve "Output software versions and methods and references"
Pipeline
#3215
failed with stages
in 18 seconds
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
workflow/main.nf
+24
-22
24 additions, 22 deletions
workflow/main.nf
with
24 additions
and
22 deletions
workflow/main.nf
+
24
−
22
View file @
6ae5df58
...
...
@@ -134,7 +134,7 @@ process alignReads {
output:
set sampleId, file('*.bam'), experimentId, biosample, factor, treatment, replicate, controlId into mappedReads
file
'*.flagstat.qc' into mappedReadsStats
file
(
'*.flagstat.qc'
)
into mappedReadsStats
file('version_*.txt') into alignReadsVersions
script:
...
...
@@ -166,9 +166,9 @@ process filterReads {
set sampleId, file('*.bam'), file('*.bai'), experimentId, biosample, factor, treatment, replicate, controlId into dedupReads
set sampleId, file('*.bam'), experimentId, biosample, factor, treatment, replicate, controlId into convertReads
file
'*.flagstat.qc' into dedupReadsStats
file
'*.pbc.qc' into dedupReadsComplexity
file
'*.dedup.qc' into dupReads
file
(
'*.flagstat.qc'
)
into dedupReadsStats
file
(
'*.pbc.qc'
)
into dedupReadsComplexity
file
(
'*.dedup.qc'
)
into dupReads
file('version_*.txt') into filterReadsVersions
script:
...
...
@@ -204,7 +204,7 @@ process experimentQC {
output:
file
'*.{pdf,npz}' into experimentQCStats
file
(
'*.{pdf,npz}'
)
into experimentQCStats
file('version_*.txt') into experimentQCVersions
script:
...
...
@@ -293,7 +293,7 @@ process defineExpDesignFiles {
output:
file
'*.tsv' into experimentObjs mode flatten
file
(
'*.tsv'
)
into experimentObjs mode flatten
script:
...
...
@@ -317,7 +317,7 @@ process poolAndPsuedoReads {
output:
file
'*.tsv' into experimentPoolObjs
file
(
'*.tsv'
)
into experimentPoolObjs
script:
...
...
@@ -351,7 +351,7 @@ process callPeaksMACS {
output:
set sampleId, file('*.narrowPeak'), file('*.fc_signal.bw'), file('*.pvalue_signal.bw'), experimentId, biosample, factor, treatment, replicate, controlId into experimentPeaks
file
'*.xls' into callPeaksMACSsummit
file
(
'*.xls'
)
into callPeaksMACSsummit
file('version_*.txt') into callPeaksMACSVersions
script:
...
...
@@ -388,11 +388,11 @@ process consensusPeaks {
output:
file
'*.replicated.*' into consensusPeaks
file
'*.rejected.*' into rejectedPeaks
file
'design_diffPeaks.csv' into designDiffPeaks
file
'design_annotatePeaks.tsv' into designAnnotatePeaks, designMotifSearch
file
'unique_experiments.csv' into uniqueExperiments
file
(
'*.replicated.*'
)
into consensusPeaks
file
(
'*.rejected.*'
)
into rejectedPeaks
file
(
'design_diffPeaks.csv'
)
into designDiffPeaks
file
(
'design_annotatePeaks.tsv'
)
into designAnnotatePeaks, designMotifSearch
file
(
'unique_experiments.csv'
)
into uniqueExperiments
file('version_*.txt') into consensusPeaksVersions
script:
...
...
@@ -414,7 +414,7 @@ process peakAnnotation {
output:
file
"*chipseeker*" into peakAnnotation
file
(
"*chipseeker*"
)
into peakAnnotation
file('version_*.txt') into peakAnnotationVersions
script:
...
...
@@ -436,8 +436,8 @@ process motifSearch {
output:
file
"*memechip" into motifSearch
file
"*narrowPeak" into filteredPeaks
file
(
"*memechip"
)
into motifSearch
file
(
"*narrowPeak"
)
into filteredPeaks
file('version_*.txt') into motifSearchVersions
script:
...
...
@@ -463,10 +463,10 @@ process diffPeaks {
output:
file
'*_diffbind.bed' into diffPeaks
file
'*_diffbind.csv' into diffPeaksCounts
file
'*.pdf' into diffPeaksStats
file
'normcount_peaksets.txt' into normCountPeaks
file
(
'*_diffbind.bed'
)
into diffPeaks
file
(
'*_diffbind.csv'
)
into diffPeaksCounts
file
(
'*.pdf'
)
into diffPeaksStats
file
(
'normcount_peaksets.txt'
)
into normCountPeaks
file('version_*.txt') into diffPeaksVersions
when:
...
...
@@ -494,10 +494,12 @@ process softwareReport {
motifSearchVersions
diffPeaksVersions
experimentQCVersions
references
output:
file
'*_mqc.yaml' into softwareVersions
file
'*_mqc.
yaml'
into softwareReferences
file
(
'*_mqc.yaml'
)
into softwareVersions
file
(
'*_mqc.
txt')
into softwareReferences
script:
"""
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
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