Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
RNA-seq
Manage
Activity
Members
Labels
Plan
Issues
12
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
GUDMAP_RBK
RNA-seq
Commits
bb9b33d6
Commit
bb9b33d6
authored
5 years ago
by
Gervaise Henry
Browse files
Options
Downloads
Plain Diff
Merge branch '16-trim.ci' into 'develop'
Resolve "Add CI for Trim" Closes
#16
See merge request
!7
parents
0147ece8
fb588535
Branches
Branches containing commit
Tags
Tags containing commit
3 merge requests
!37
v0.0.1
,
!11
Develop
,
!7
Resolve "Add CI for Trim"
Pipeline
#5648
failed
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
.gitlab-ci.yml
+23
-6
23 additions, 6 deletions
.gitlab-ci.yml
with
23 additions
and
6 deletions
.gitlab-ci.yml
+
23
−
6
View file @
bb9b33d6
...
...
@@ -2,15 +2,32 @@ before_script:
-
module add python/3.6.1-2-anaconda
-
pip install --user pytest-pythonpath==0.7.1 pytest-cov==2.5.1
-
module load singularity/3.0.2
-
ln -sfn /project/BICF/BICF_Core/shared/gudmap/cookies/deriva-cookies.txt ./test_data/
-
ln -sfn /project/BICF/BICF_Core/shared/gudmap/test_data/File_Q-Y53P.zip ./test_data/
-
ln -sfn /project/BICF/BICF_Core/shared/gudmap/test_data/ ./test_data/
stages
:
-
unit
unit
:
getBag
:
stage
:
unit
script
:
-
singularity run 'docker://bicf/gudmaprbkfilexfer:1.1' bdbag --materialize ./test_data/File_Q-Y53P.zip
-
singularity run 'docker://bicf/gudmaprbkfilexfer:1.1' bdbag --validate full ./test_data/File_Q-Y53P/
-
if [[ $(md5sum test_data/File_Q-Y53P/data/assets/Study/Q-Y4H0/Experiment/Q-Y4BY/Replicate/Q-Y5F8/hMARIS_SIX2+_RiboDep#1.gene.rpkm.txt | awk '{ print $1 }') != $(cat test_data/File_Q-Y53P/data/File.csv | cut -d ',' -f10 | tail -1) ]]; then exit 21; fi;
-
ln -sf `readlink -e ./test_data/auth/credential.json` ~/.deriva/credential.json
-
singularity run 'docker://bicf/gudmaprbkfilexfer:1.1' deriva-download-cli dev.gudmap.org --catalog 2 ./workflow/conf/replicate_export_config.json . rid=16-1ZX4
getData
:
stage
:
unit
script
:
-
ln -sf `readlink -e ./test_data/auth/cookies.txt` ~/.bdbag/deriva-cookies.txt
-
unzip ./test_data/bagit/Replicate_16-1ZX4
-
singularity run 'docker://bicf/gudmaprbkfilexfer:1.1' sh ./workflow/scripts/bdbagFetch.sh Replicate_16-1ZX4 16-1ZX4
trimData_se
:
tage
:
unit
script
:
-
if [ `nproc` -gt 8 ]; then ncore=8; else ncore=`nproc`; fi
-
singularity run 'docker://bicf/trimgalore:1.1' trim_galore --gzip -q 25 --illumina --length 35 --basename 16-1ZX4 -j ${ncore} ./test_data/fastq/16-1ZX4.R1.fastq.gz
trimData_pe
:
tage
:
unit
script
:
-
if [ `nproc` -gt 8 ]; then ncore=8; else ncore=`nproc`; fi
-
singularity run 'docker://bicf/trimgalore:1.1' trim_galore --gzip -q 25 --illumina --length 35 --paired --basename Q-Y5JA -j ${ncore} ./test_data/fastq/Q-Y5JA.R1.fastq.gz ./test_data/fastq/Q-Y5JA.R2.fastq.gz
\ 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