Skip to content
Snippets Groups Projects
Commit 5f7f3d0f authored by Venkat Malladi's avatar Venkat Malladi
Browse files

Add gitlab-ci test configuration and update testing.

parent db1c9133
Branches
Tags
No related merge requests found
before_script:
- sh test_data/fetch_test_data.sh
test:
script:
- module add astrocyte/0.1.0
- cd ..
- astrocyte_cli test chipseq_analysis
......@@ -17,7 +17,8 @@ title: 'BICF ChIP-seq Analysis Workflow'
# A summary of the workflow package in plain text
description: |
This is a workflow package for the BioHPC/BICF ChIP-seq workflow system.
It implements a simple ChIP-seq analysis workflow using deepTools, Diffbind, ChipSeeker and MEME-ChIP, visualization application.
It implements a simple ChIP-seq analysis workflow and
visualization application.
# -----------------------------------------------------------------------------
# DOCUMENTATION
......@@ -91,7 +92,11 @@ workflow_parameters:
- [ 'true', 'True']
- [ 'false', 'False']
description: |
In single-end sequencing, the sequencer reads a fragment from only one end to the other, generating the sequence of base pairs. In paired-end reading it starts at one read, finishes this direction at the specified read length, and then starts another round of reading from the opposite end of the fragment.
In single-end sequencing, the sequencer reads a fragment from only one
end to the other, generating the sequence of base pairs. In paired-end
reading it starts at one read, finishes this direction at the specified
read length, and then starts another round of reading from the opposite
end of the fragment.
# -----------------------------------------------------------------------------
# SHINY APP CONFIGURATION
......@@ -109,8 +114,8 @@ vizapp_cran_packages:
- shiny
- shinyFiles
# # List of any Bioconductor packages, not provided by the modules, that must be made
# available to the vizapp
# List of any Bioconductor packages, not provided by the modules,
# that must be made available to the vizapp
vizapp_bioc_packages:
- qusage
# - ballgown
......
echo "Downloading test set..."
wget -O ENCLB904PZW_R1.fastq.gz https://www.encodeproject.org/files/ENCFF704XKC/@@download/ENCFF704XKC.fastq.gz
wget -O ENCLB904PZW_R2.fastq.gz https://www.encodeproject.org/files/ENCFF707CNX/@@download/ENCFF707CNX.fastq.gz
echo "Done"
......@@ -3,7 +3,7 @@
// Path to an input file, or a pattern for multiple inputs
// Note - $baseDir is the location of this workflow file main.nf
params.reads = "$baseDir/../test_data/*_{1,2}.fastq.gz"
params.reads = "$baseDir/../test_data/*_R{1,2}.fastq.gz"
params.singleEnd = false
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment