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
3240eff6
There was an error fetching the commit references. Please try again later.
Commit
3240eff6
authored
5 years ago
by
Gervaise Henry
🤠
Browse files
Options
Downloads
Patches
Plain Diff
Add 5prime chemistry option
parent
f80afb28
2 merge requests
!63
Develop
,
!60
Resolve "Add 3':5' param"
Pipeline
#6517
canceled with stages
Changes
3
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
astrocyte_pkg.yml
+4
-3
4 additions, 3 deletions
astrocyte_pkg.yml
cleanup.sh
+7
-0
7 additions, 0 deletions
cleanup.sh
workflow/main.nf
+6
-4
6 additions, 4 deletions
workflow/main.nf
with
17 additions
and
7 deletions
astrocyte_pkg.yml
+
4
−
3
View file @
3240eff6
...
...
@@ -135,9 +135,10 @@ workflow_parameters:
type
:
select
default
:
'
auto'
choices
:
-
[
'
auto'
,
'
Auto
Detect'
]
-
[
'
three'
,
'
3'
]
-
[
'
two'
,
'
2'
]
-
[
'
auto'
,
"
Auto
Detect"
]
-
[
'
3GEXv3'
,
"
3'GEX
v3
(3'
Gene
Expression)"
]
-
[
'
3GEXv2'
,
"
3'GEX
v2
(3'
Gene
Expression)"
]
-
[
'
5GEX'
,
"
5'GEX
Auto
(5'
Gene
Expression)"
]
required
:
true
description
:
|
10x single cell gene expression chemistry version (only used in cellranger version 3.x).
...
...
This diff is collapsed.
Click to expand it.
cleanup.sh
0 → 100644
+
7
−
0
View file @
3240eff6
rm
*
.out
rm
pipeline_trace
*
.txt
*
rm
report
*
.html
*
rm
timeline
*
.html
*
rm
.nextflow
*
.log
*
rm
-r
.nextflow/
rm
-r
work/
This diff is collapsed.
Click to expand it.
workflow/main.nf
+
6
−
4
View file @
3240eff6
...
...
@@ -31,12 +31,14 @@ if (params.kitVersion == "three" && params.version == '2.1.1') {
if (params.astrocyte) {
print("Running under astrocyte")
params.genomeLocation = '/project/apps_database/cellranger/refdata-cellranger-'
if (params.kitVersion == "
one
") {
if (params.kitVersion == "
3GEXv1
") {
params.chemistryParam ='SC3Pv1'
} else if (params.kitVersion == "
two
") {
} else if (params.kitVersion == "
3GEXv2
") {
params.chemistryParam ='SC3Pv2'
} else if (params.kitVersion == "
three
") {
} else if (params.kitVersion == "
3GEXv3
") {
params.chemistryParam ='SC3Pv3'
} else if (params.kitVersion == "5GEX") {
params.chemistryParam ='fiveprime'
} else {
params.chemistryParam = 'auto'
}
...
...
@@ -358,4 +360,4 @@ process multiqc {
multiqc -c ${multiqcConf} .
"""
}
\ No newline at end of file
}
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