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
40481dcf
Commit
40481dcf
authored
5 years ago
by
Jeremy Mathews
Browse files
Options
Downloads
Patches
Plain Diff
Folder and File Check issue
#25
parent
185d1ef0
3 merge requests
!53
Develop
,
!43
Resolve "Move module load into nextflow process"
,
!42
Folder and File Check issue #25
Pipeline
#3962
passed with stages
in 21 minutes and 51 seconds
This commit is part of merge request
!43
. Comments created here will be created in the context of that merge request.
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
workflow/main.nf
+84
-0
84 additions, 0 deletions
workflow/main.nf
with
84 additions
and
0 deletions
workflow/main.nf
+
84
−
0
Edit
View file @
40481dcf
...
...
@@ -130,12 +130,40 @@ process count211 {
"""
hostname
ulimit -a
name=`readlink -e $ref`
if [ `find \$name -name "* *" | wc -l` -gt 0 ]
then echo "Error: Spaces found in Reference Files"
echo `find \$name -name "* *"`
exit 2
fi
if [ \$(echo "$ref" | tr -d ' ') != "$ref" ]
then echo "Error: Spaces found in Reference Files"
echo "$ref"
exit 2
fi
cellranger count --id="$sample" --transcriptome="./$ref" --fastqs=. --sample="$sample" --expect-cells=$expectCells211
"""
} else {
"""
hostname
ulimit -a
name=`readlink -e $ref`
if [ `find \$name -name "* *" | wc -l` -gt 0 ]
then echo "Error: Spaces found in Reference Files"
echo `find \$name -name "* *"`
exit 2
fi
if [ \$(echo "$ref" | tr -d ' ') != "$ref" ]
then echo "Error: Spaces found in Reference Files"
echo "$ref"
exit 2
fi
cellranger count --id="$sample" --transcriptome="./$ref" --fastqs=. --sample="$sample" --force-cells=$forceCells211
"""
}
...
...
@@ -167,12 +195,40 @@ process count301 {
"""
hostname
ulimit -a
name=`readlink -e $ref`
if [ `find \$name -name "* *" | wc -l` -gt 0 ]
then echo "Error: Spaces found in Reference Files"
echo `find \$name -name "* *"`
exit 2
fi
if [ \$(echo "$ref" | tr -d ' ') != "$ref" ]
then echo "Error: Spaces found in Reference Files"
echo "$ref"
exit 2
fi
cellranger count --id="$sample" --transcriptome="./$ref" --fastqs=. --sample="$sample" --expect-cells=$expectCells301 --chemistry="$chemistryParam301"
"""
} else {
"""
hostname
ulimit -a
name=`readlink -e $ref`
if [ `find \$name -name "* *" | wc -l` -gt 0 ]
then echo "Error: Spaces found in Reference Files"
echo `find \$name -name "* *"`
exit 2
fi
if [ \$(echo "$ref" | tr -d ' ') != "$ref" ]
then echo "Error: Spaces found in Reference Files"
echo "$ref"
exit 2
fi
cellranger count --id="$sample" --transcriptome="./$ref" --fastqs=. --sample="$sample" --force-cells=$forceCells301 --chemistry="$chemistryParam301"
"""
}
...
...
@@ -204,12 +260,40 @@ process count302 {
"""
hostname
ulimit -a
name=`readlink -e $ref`
if [ `find \$name -name "* *" | wc -l` -gt 0 ]
then echo "Error: Spaces found in Reference Files"
echo `find \$name -name "* *"`
exit 2
fi
if [ \$(echo "$ref" | tr -d ' ') != "$ref" ]
then echo "Error: Spaces found in Reference Files"
echo "$ref"
exit 2
fi
cellranger count --id="$sample" --transcriptome="./$ref" --fastqs=. --sample="$sample" --expect-cells=$expectCells302 --chemistry="$chemistryParam302"
"""
} else {
"""
hostname
ulimit -a
name=`readlink -e $ref`
if [ `find \$name -name "* *" | wc -l` -gt 0 ]
then echo "Error: Spaces found in Reference Files"
echo `find \$name -name "* *"`
exit 2
fi
if [ \$(echo "$ref" | tr -d ' ') != "$ref" ]
then echo "Error: Spaces found in Reference Files"
echo "$ref"
exit 2
fi
cellranger count --id="$sample" --transcriptome="./$ref" --fastqs=. --sample="$sample" --force-cells=$forceCells302 --chemistry="$chemistryParam302"
"""
}
...
...
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