Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
C
cellranger_mkfastq
Manage
Activity
Members
Labels
Plan
Issues
7
Issue boards
Milestones
Iterations
Wiki
Requirements
Code
Merge requests
1
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
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
cellranger_mkfastq
Commits
00b66d4c
There was a problem fetching the pipeline stages.
Commit
00b66d4c
authored
6 years ago
by
Gervaise Henry
Browse files
Options
Downloads
Patches
Plain Diff
Change report order
parent
42e5fcf0
Branches
Branches containing commit
Tags
Tags containing commit
2 merge requests
!8
Develop
,
!6
Resolve "Add MultiQC"
Pipeline
#3472
failed with stages
in 1 minute and 33 seconds
Changes
2
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
workflow/main.nf
+4
-1
4 additions, 1 deletion
workflow/main.nf
workflow/scripts/.multiqc_config.yaml
+6
-0
6 additions, 0 deletions
workflow/scripts/.multiqc_config.yaml
with
10 additions
and
1 deletion
workflow/main.nf
+
4
−
1
View file @
00b66d4c
...
...
@@ -7,6 +7,7 @@
params.bcl = "$baseDir/../test_data/*.tar.gz"
params.designFile = "$baseDir/../test_data/design.csv"
params.outDir = "$baseDir/output"
params.references = "$baseDir/../docs/references.md"
// Define List of Files
tarList = Channel.fromPath( params.bcl )
...
...
@@ -16,6 +17,7 @@ designLocation = Channel
.fromPath(params.designFile)
.ifEmpty { exit 1, "design file not found: ${params.designFile}" }
outDir = params.outDir
references = params.references
process checkDesignFile {
...
...
@@ -140,6 +142,7 @@ process versions {
ulimit -a
module load python/3.6.1-2-anaconda
echo $workflow.nextflow.version > version_nextflow.txt
python3 $baseDir/scripts/generate_references.py -r $references -o references
python3 $baseDir/scripts/generate_versions.py -f version_*.txt -o versions
"""
}
...
...
@@ -164,6 +167,6 @@ process multiqc {
hostname
ulimit -a
module load multiqc/1.7
multiqc .
multiqc .
-c $baseDir/scripts/.multiqc_config.yaml
"""
}
This diff is collapsed.
Click to expand it.
workflow/scripts/.multiqc_config.yaml
0 → 100644
+
6
−
0
View file @
00b66d4c
top_modules
:
-
'
Software
Versions'
module_order
:
-
bcl2fastq
-
fastqc
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