Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
A
astrocyte_example_chipseq
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Locked Files
Issues
0
Issues
0
List
Boards
Labels
Service Desk
Milestones
Iterations
Merge Requests
0
Merge Requests
0
Requirements
Requirements
List
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Test Cases
Security & Compliance
Security & Compliance
Dependency List
License Compliance
Operations
Operations
Incidents
Environments
Analytics
Analytics
CI / CD
Code Review
Insights
Issue
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
BioHPC
astrocyte_example_chipseq
Commits
8eba4bb8
Commit
8eba4bb8
authored
Feb 04, 2019
by
David Trudgian
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Basic CI setup
parent
91cd945b
Pipeline
#2932
failed with stages
Changes
2
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
48 additions
and
3 deletions
+48
-3
.gitlab-ci.yml
.gitlab-ci.yml
+37
-0
astrocyte_pkg.yml
astrocyte_pkg.yml
+11
-3
No files found.
.gitlab-ci.yml
0 → 100644
View file @
8eba4bb8
# Run our tests against a specific version of astrocyte
before_script
:
-
module load astrocyte/0.1.0
stages
:
-
check
-
test
# This performs validation of the astrocyte_pkg.yml file
astrocyte_check
:
stage
:
check
script
:
-
astrocyte_cli check "$CI_PROJECT_DIR"
# This runs the workflow with test data and does a simple
# check for the expected output files
astrocyte_test
:
stage
:
test
script
:
-
astrocyte_cli test "$CI_PROJECT_DIR"
-
test -s "$CI_PROJECT_DIR/workflow/output/G1E_ER4_CTCT_chr9.fastq.sam.gz.bam"
-
test -s "$CI_PROJECT_DIR/workflow/output/G1E_ER4_CTCT_chr9.fastq.sam.gz.bam_bwa_nomodel_peaks.bed"
-
test -s "$CI_PROJECT_DIR/workflow/output/G1E_ER4_CTCT_chr9.fastq.sam.gz.bam_bwa_nomodel_peaks.xls"
-
test -s "$CI_PROJECT_DIR/workflow/output/G1E_ER4_CTCT_chr9.fastq.sam.gz.bam_bwa_nomodel_summits.bed"
# This verifies we can install the shiny vizapp dependencies, set the vizapp
# running and make at least a connection to it.
astrocyte_shiny
:
stage
:
test
script
:
-
astrocyte_cli shiny-prepare "$CI_PROJECT_DIR"
-
'
timeout
10
astrocyte_cli
shiny
"$CI_PROJECT_DIR"
&'
-
sleep
5
-
unset http_proxy
-
unset all_proxy
-
wget "http://127.0.0.1:8123"
astrocyte_pkg.yml
View file @
8eba4bb8
...
...
@@ -57,6 +57,8 @@ workflow_modules:
# file - A single file from user data
# files - One or more files from user data
# select - A selection from a list of values
# multiselect - One or more selections from a list of values
#
# required: true/false, must the parameter be entered/chosen?
# description: A user friendly description of the meaning of the parameter
#
...
...
@@ -107,7 +109,7 @@ workflow_parameters:
# The workflow must publish all final output into $baseDir
# Name of the R module that the vizapp will run against
vizapp_r_module
:
'
R/3.
2.1-inte
l'
vizapp_r_module
:
'
R/3.
4.1-gccmk
l'
# List of any CRAN packages, not provided by the modules, that must be made
# available to the vizapp
...
...
@@ -115,7 +117,13 @@ vizapp_cran_packages:
-
shiny
-
shinyFiles
#
#
List of any Bioconductor packages, not provided by the modules, that must be made
# List of any Bioconductor packages, not provided by the modules, that must be made
# available to the vizapp
vizapp_bioc_packages
:
-
chipseq
-
# List of any packages to install from GitHub using devtools, that must be
# made availavle to the vizapp
vizapp_github_packages
:
-
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment