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
4cdee6d3
Commit
4cdee6d3
authored
5 years ago
by
Gervaise Henry
Browse files
Options
Downloads
Plain Diff
Merge branch '19-ci.integration.test' into 'develop'
Resolve "Add integration CI test" Closes
#19
See merge request
!10
parents
c434dbd9
4227759d
Branches
Branches containing commit
Tags
Tags containing commit
3 merge requests
!37
v0.0.1
,
!11
Develop
,
!10
Resolve "Add integration CI test"
Pipeline
#5677
passed with stages
in 24 minutes and 21 seconds
Changes
3
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
.gitlab-ci.yml
+13
-1
13 additions, 1 deletion
.gitlab-ci.yml
workflow/conf/biohpc.config
+11
-0
11 additions, 0 deletions
workflow/conf/biohpc.config
workflow/rna-seq.nf
+1
-0
1 addition, 0 deletions
workflow/rna-seq.nf
with
25 additions
and
1 deletion
.gitlab-ci.yml
+
13
−
1
View file @
4cdee6d3
...
...
@@ -2,12 +2,14 @@ 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
-
module load nextflow/19.09.0
-
ln -sfn /project/BICF/BICF_Core/shared/gudmap/test_data/* ./test_data/
-
mkdir -p ~/.deriva
-
mkdir -p ~/.bdbag
stages
:
-
unit
-
integration
getBag
:
stage
:
unit
...
...
@@ -36,4 +38,14 @@ trimData_pe:
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
-
pytest -m trimData_pe
\ No newline at end of file
-
pytest -m trimData_pe
integration_se
:
stage
:
integration
script
:
-
nextflow run ./workflow/rna-seq.nf --deriva ./test_data/auth/credential.json --bdbag ./test_data/auth/cookies.txt --repRID 16-1ZX4
integration_pe
:
stage
:
integration
script
:
-
nextflow run ./workflow/rna-seq.nf --deriva ./test_data/auth/credential.json --bdbag ./test_data/auth/cookies.txt --repRID Q-Y5JA
\ No newline at end of file
This diff is collapsed.
Click to expand it.
workflow/conf/biohpc.config
+
11
−
0
View file @
4cdee6d3
...
...
@@ -15,4 +15,15 @@ process {
container
=
'docker://bicf/trimgalore:1.1'
queue
=
'256GB,256GBv1,384GB'
}
}
singularity
{
enabled
=
true
cacheDir
=
'/project/shared/bicf_workflow_ref/singularity_images/'
}
env
{
http_proxy
=
'http://proxy.swmed.edu:3128'
https_proxy
=
'http://proxy.swmed.edu:3128'
all_proxy
=
'http://proxy.swmed.edu:3128'
}
\ No newline at end of file
This diff is collapsed.
Click to expand it.
workflow/rna-seq.nf
+
1
−
0
View file @
4cdee6d3
...
...
@@ -50,6 +50,7 @@ process getBag {
"""
hostname >>${repRID_getBag}.getBag.err
ulimit -a >>${repRID_getBag}.getBag.err
export https_proxy=\${http_proxy}
ln -sf `readlink -e credential.json` ~/.deriva/credential.json 2>>${repRID_getBag}.getBag.err
echo "LOG: deriva credentials linked" >>${repRID_getBag}.getBag.err
deriva-download-cli dev.gudmap.org --catalog 2 ${derivaConfig} . rid=${repRID_getBag} 2>>${repRID_getBag}.getBag.err
...
...
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