Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
C
cellranger_count
Manage
Activity
Members
Labels
Plan
Issues
11
Issue boards
Milestones
Iterations
Wiki
Requirements
Code
Merge requests
0
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_count
Commits
01a09551
There was a problem fetching the pipeline stages.
Commit
01a09551
authored
6 years ago
by
Gervaise Henry
Browse files
Options
Downloads
Patches
Plain Diff
Fix designFile location passage to checkDesignFile process
parent
2ada067d
Branches
Branches containing commit
Tags
Tags containing commit
No related merge requests found
Pipeline
#2347
failed with stage
Changes
2
Pipelines
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
test_data/design.csv
+3
-3
3 additions, 3 deletions
test_data/design.csv
workflow/main.nf
+6
-5
6 additions, 5 deletions
workflow/main.nf
with
9 additions
and
8 deletions
test_data/design.csv
+
3
−
3
View file @
01a09551
Sample,fastq_R1,fastq_R2
D17PrPzF_BE,D17PrPzF_BE_S1_L001_R1_001.fastq.gz,D17PrPzF_BE_S1_L001_R2_001.fastq.gz
D17PrPzF_BE,D17PrPzF_BE_S1_L002_R1_001.fastq.gz,D17PrPzF_BE_S1_L002_R2_001.fastq.gz
D17PrPzF_LE,D17PrPzF_LE_S3_L001_R1_001.fastq.gz,D17PrPzF_LE_S3_L001_R2_001.fastq.gz
\ No newline at end of file
D17PrPzF_BE,/work/urology/ghenry/Grimoire/Astrocyte/cellranger_count/test_data/D17PrPzF_BE_S1_L001_R1_001.fastq.gz,/work/urology/ghenry/Grimoire/Astrocyte/cellranger_count/test_data/D17PrPzF_BE_S1_L001_R2_001.fastq.gz
D17PrPzF_BE,/work/urology/ghenry/Grimoire/Astrocyte/cellranger_count/test_data/D17PrPzF_BE_S1_L002_R1_001.fastq.gz,/work/urology/ghenry/Grimoire/Astrocyte/cellranger_count/test_data/D17PrPzF_BE_S1_L002_R2_001.fastq.gz
D17PrPzF_LE,/work/urology/ghenry/Grimoire/Astrocyte/cellranger_count/test_data/D17PrPzF_LE_S3_L001_R1_001.fastq.gz,/work/urology/ghenry/Grimoire/Astrocyte/cellranger_count/test_data/D17PrPzF_LE_S3_L001_R2_001.fastq.gz
This diff is collapsed.
Click to expand it.
workflow/main.nf
+
6
−
5
View file @
01a09551
...
...
@@ -10,14 +10,15 @@ params.genome = '/project/apps_database/cellranger/refdata-cellranger-GRCh38-1.2
params.expectCells = 10000
params.forceCells = 0
// Define List of Files
// Define regular variables
designLocation = Channel
.fromPath(params.designFile)
.ifEmpty { exit 1, "design file not found: ${params.designFile}" }
fastqList = Channel
.fromPath(params.fastq)
.flatten()
.map { file -> [ file.getFileName().toString(), file.toString() ].join("\t") }
.collectFile(name: 'fileList.tsv', newLine: true)
// Define regular variables
refLocation = Channel
.fromPath(params.genome)
.ifEmpty { exit 1, "referene not found: ${params.genome}" }
...
...
@@ -30,7 +31,7 @@ process checkDesignFile {
input:
params.designFile
file designLocation
file fastqList
output:
...
...
@@ -41,7 +42,7 @@ process checkDesignFile {
"""
module load python/3.6.1-2-anaconda
python3 $baseDir/scripts/check_design.py -d $
params.designFile
-f $fastqList
python3 $baseDir/scripts/check_design.py -d $
designLocation
-f $fastqList
"""
}
...
...
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