Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
C
cellranger-count
Manage
Activity
Members
Labels
Plan
Issues
3
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
Package Registry
Container Registry
Operate
Environments
Terraform modules
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
Astrocyte
Workflows
Strand Lab
cellranger-count
Commits
6be8a574
Commit
6be8a574
authored
8 months ago
by
John Lafin
Browse files
Options
Downloads
Patches
Plain Diff
Add barnyard reference
parent
10f9fd51
Branches
Branches containing commit
Tags
Tags containing commit
No related merge requests found
Changes
5
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
CHANGES.md
+8
-0
8 additions, 0 deletions
CHANGES.md
README.md
+1
-1
1 addition, 1 deletion
README.md
docs/index.md
+1
-1
1 addition, 1 deletion
docs/index.md
test_data/sample_sheet.csv
+2
-1
2 additions, 1 deletion
test_data/sample_sheet.csv
workflow/main.nf
+3
-0
3 additions, 0 deletions
workflow/main.nf
with
15 additions
and
3 deletions
CHANGES.md
+
8
−
0
View file @
6be8a574
2024-06-20
Added support for barnyard reference.
2024-02-01
Added ability to run multiple samples at once.
2023-09-14
Initial version.
\ No newline at end of file
This diff is collapsed.
Click to expand it.
README.md
+
1
−
1
View file @
6be8a574
...
...
@@ -21,7 +21,7 @@ selected, only those matching the sample name will be included.
-
sample_sheet: This is a file with the following named columns:
- **sample**: The name of the sample. This must match the prefix of the associated fastq files.
- **reference**: Which reference genome to use. This workflow currently supports the values "hg38"
or "mm10"
.
- **reference**: Which reference genome to use. This workflow currently supports the values "hg38"
, "mm10", or "barnyard" (hg38 and mm10 combined)
.
- **expectCells**: The number of cells expected from this sample. Set to "0" for auto-detection.
- **chemistry**: The chemistry used to generate libraries. Set to "auto" for auto-detection.
Note that if the chemistry is 3' v1 or you're analyzing GEX data alone generated from
...
...
This diff is collapsed.
Click to expand it.
docs/index.md
+
1
−
1
View file @
6be8a574
...
...
@@ -15,7 +15,7 @@ selected, only those with prefixes matching the sample name will be included.
-
sample_sheet: This is a file with the following named columns:
- **sample**: The name of the sample. This must match the prefix of the associated fastq files.
- **reference**: Which reference genome to use. This workflow currently supports the values "hg38"
or "mm10"
.
- **reference**: Which reference genome to use. This workflow currently supports the values "hg38"
, "mm10", or "barnyard" (hg38 and mm10 combined)
.
- **expectCells**: The number of cells expected from this sample. Set to "0" for auto-detection.
- **chemistry**: The chemistry used to generate libraries. Set to "auto" for auto-detection.
Note that if the chemistry is 3' v1 or you're analyzing GEX data alone generated from
...
...
This diff is collapsed.
Click to expand it.
test_data/sample_sheet.csv
+
2
−
1
View file @
6be8a574
sample,reference,expectCells,chemistry,introns,noBam
Brain_Tumor_3p_LT,hg38,0,auto,true,true
hgmm_100,mm10,0,auto,true,true
\ No newline at end of file
hgmm_100,mm10,0,auto,true,true
hgmm_100,barnyard,0,auto,true,true
\ No newline at end of file
This diff is collapsed.
Click to expand it.
workflow/main.nf
+
3
−
0
View file @
6be8a574
...
...
@@ -42,6 +42,9 @@ process cr_count {
case "mm10":
ref = file("/project/apps_database/cellranger/refdata-gex-mm10-2020-A")
break
case "barnyard":
ref = file("/project/apps_database/cellranger/refdata-gex-GRCh38_and_mm10-2020-A")
break
default:
ref = file(ref)
}
...
...
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