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
cadc1dea
Commit
cadc1dea
authored
4 years ago
by
Gervaise Henry
Browse files
Options
Downloads
Plain Diff
Merge branch '56-5GEX' into 'develop'
Resolve "Add 5GEXPE/SE as library options" Closes
#56
See merge request
!80
parents
70e3c6e4
911127be
1 merge request
!80
Resolve "Add 5GEXPE/SE as library options"
Pipeline
#8396
passed with stages
in 15 minutes and 43 seconds
Changes
4
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
CHANGELOG.md
+2
-1
2 additions, 1 deletion
CHANGELOG.md
README.md
+3
-0
3 additions, 0 deletions
README.md
astrocyte_pkg.yml
+3
-0
3 additions, 0 deletions
astrocyte_pkg.yml
workflow/main.nf
+7
-1
7 additions, 1 deletion
workflow/main.nf
with
15 additions
and
2 deletions
CHANGELOG.md
+
2
−
1
View file @
cadc1dea
# v3.0.0
**User Facing**
*
*
Add 5GEX-PE, 5GEX-R2, threeprime as library options
**Background**
*Known Bugs*
*
Vizapp does not yet work for Astrocyte
*
Running in CLI: to set --fastq path of file/s needs to be in quotes
*
2020-A references don't work with with cellranger versions < 4.0.0 (bug)
# v2.2.0
**User Facing**
...
...
This diff is collapsed.
Click to expand it.
README.md
+
3
−
0
View file @
cadc1dea
...
...
@@ -96,9 +96,12 @@ To Run:
*
--version (cellranger version) 2.1.1 can only read --kitVersion of two (2)
*
options:
*
*'auto'*
*
*'3GEX'*
*
*'3GEXv3'*
*
*'3GEXv2'*
*
*'5GEX'*
*
*'5GEXPE'*
*
*'5GEXR2'*
*
eg:
**--kitVersion '3GEXv3'**
*
**--version**
*
cellranger version
...
...
This diff is collapsed.
Click to expand it.
astrocyte_pkg.yml
+
3
−
0
View file @
cadc1dea
...
...
@@ -140,9 +140,12 @@ workflow_parameters:
default
:
'
auto'
choices
:
-
[
'
auto'
,
'
Auto
Detect'
]
-
[
'
3GEX'
,
'
3prime
GEX
Auto
(3prime
Gene
Expression)'
]
-
[
'
3GEXv3'
,
'
3prime
GEX
v3
(3prime
Gene
Expression)'
]
-
[
'
3GEXv2'
,
'
3prime
GEX
v2
(3prime
Gene
Expression)'
]
-
[
'
5GEX'
,
'
5prime
GEX
Auto
(5prime
Gene
Expression)'
]
-
[
'
5GEXPE'
,
'
5prime
GEX
both
R1
and
R2
used
for
alignment
(5prime
Gene
Expression)'
]
-
[
'
5GEXR2'
,
'
5prime
GEX
only
R2
used
for
alignment
(5prime
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.
workflow/main.nf
+
7
−
1
View file @
cadc1dea
...
...
@@ -44,7 +44,9 @@ if (params.astrocyte) {
} else {
params.genomeLocation = '/project/apps_database/cellranger/refdata-cellranger-'
}
if (params.kitVersion == "3GEXv1") {
if (params.kitVersion == "3GEX") {
params.chemistryParam ='threeprime'
} else if (params.kitVersion == "3GEXv1") {
params.chemistryParam ='SC3Pv1'
} else if (params.kitVersion == "3GEXv2") {
params.chemistryParam ='SC3Pv2'
...
...
@@ -52,6 +54,10 @@ if (params.astrocyte) {
params.chemistryParam ='SC3Pv3'
} else if (params.kitVersion == "5GEX") {
params.chemistryParam ='fiveprime'
} else if (params.kitVersion == "5GEXPE") {
params.chemistryParam ='SC5P-PE'
} else if (params.kitVersion == "5GEXR2") {
params.chemistryParam ='SC5P-R2'
} else {
params.chemistryParam = 'auto'
}
...
...
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