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
84beba5c
Commit
84beba5c
authored
1 year ago
by
John Lafin
Browse files
Options
Downloads
Patches
Plain Diff
Add astrocyte and barnyard tests
parent
c3e5b3f0
Branches
Branches containing commit
Tags
Tags containing commit
Pipeline
#13574
canceled with stages
in 7 minutes and 25 seconds
Changes
1
Pipelines
2
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
.gitlab-ci.yml
+27
-10
27 additions, 10 deletions
.gitlab-ci.yml
with
27 additions
and
10 deletions
.gitlab-ci.yml
+
27
−
10
View file @
84beba5c
...
...
@@ -3,6 +3,7 @@
# chemistries and mouse data.
stages
:
# List of stages for jobs, and their order of execution
-
astrocyte
-
download
-
test
...
...
@@ -14,27 +15,43 @@ variables:
GIT_STRATEGY
:
clone
# Set to avoid expected shallow list error
GIT_DEPTH
:
10
# Set to avoid expected shallow list error
default
:
tags
:
-
vm
# Pass jobs to the VM runner
#- astrocyte # Pass jobs to the astrocyte runner
before_script
:
-
export PATH="/opt/nextflow:/opt/cellranger-7.1.0:$PATH"
# Necessary to run on VM
astrocyte_check
:
# Check for astrocyte validity
stage
:
astrocyte
tags
:
-
astrocyte
script
:
-
module load astrocyte/2.0.1
-
astrocyte_cli check .
download-test-data
:
# Download the test data if missing
stage
:
download
tags
:
-
vm
script
:
-
cd test_data
-
if [ ! -d "Brain_Tumor_3p_LT_fastqs" ]; then ./fetch_Brain_Tumor_3p_LT.sh; fi
-
if [ ! -d "hgmm_100_fastqs" ]; then ./fetch_hgmm_100.sh; fi
artifacts
:
paths
:
-
test_data/
expire_in
:
2 days
test-
cr-
count
:
# Run cellranger count on the
test
data
test-count
-human
:
# Run cellranger count on the
human
data
stage
:
test
tags
:
-
vm
before_script
:
-
export PATH="/opt/nextflow:/opt/cellranger-7.1.0:$PATH"
script
:
-
nextflow run workflow/main.nf --reference=/data/ref_data/refdata-gex-GRCh38-2020-A --noBam=true
-
nextflow clean -f -keep-logs
test-count-barnyard
:
# Run cellranger count on the barnyard data
stage
:
test
tags
:
-
vm
before_script
:
-
export PATH="/opt/nextflow:/opt/cellranger-7.1.0:$PATH"
script
:
-
nextflow run workflow/main.nf --reference=/home/strand_admin/ref/refdata-gex-GRCh38-2020-A --noBam=true
# Necessary to run on VM; skip bam generation
#- module load nextflow/22.04.5 # Necessary to run on astrocyte
#- nextflow run workflow/main.nf
-
nextflow run workflow/main.nf --fastq=test_data/hgmm_100_fastqs --reference=/data/ref_data/refdata-gex-GRCh38-and-mm10-2020-A --noBam=true
-
nextflow clean -f -keep-logs
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