diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 68bfb14153a9e42c3d0987bc70dbd1b29f5a04ca..0929f06a768306511f4b968fad2629c99933d24a 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -1,6 +1,6 @@ before_script: - module add python/3.6.1-2-anaconda - - pip install --user pytest-pythonpath + - pip install --user pytest-pythonpath pytest-cov - module load nextflow/0.24.1-SNAPSHOT - ln -s /project/shared/bicf_workflow_ref/workflow_testdata/chipseq/*fastq.gz test_data/ @@ -18,8 +18,9 @@ single_end_mouse: script: - nextflow run workflow/main.nf - pytest -m integration + - pytest --cov=./workflow/scripts paired_end_human: stage: integration script: - - nextflow run workflow/main.nf --designFile "test_data/design_ENCSR729LGA_PE.txt" --genome 'GRCh38' + - nextflow run workflow/main.nf --designFile "$baseDir/../test_data/design_ENCSR729LGA_PE.txt" --genome 'GRCh38' diff --git a/README.md b/README.md index e69de29bb2d1d6434b8b29ae775ad8c2e48c5391..5fe6542df1603ed4a7eb3bfc5943dfc8650e92dd 100644 --- a/README.md +++ b/README.md @@ -0,0 +1,14 @@ +# BICF ChIP-seq Pipeline + +[](https://git.biohpc.swmed.edu/BICF/Astrocyte/chipseq_analysis/commits/master) +[](https://www.nextflow.io/) +[](https://git.biohpc.swmed.edu/BICF/Astrocyte/chipseq_analysis/commits/master) + + +## Introduction +BICF ChIPseq is a bioinformatics best-practice analysis pipeline used for ChIP-seq (chromatin immunoprecipitation sequencing) data analysis at [BICF](http://www.utsouthwestern.edu/labs/bioinformatics/) at [UT Southwestern Dept. of Bioinformatics](http://www.utsouthwestern.edu/departments/bioinformatics/). + +The pipeline uses [Nextflow](https://www.nextflow.io), a bioinformatics workflow tool. It pre-processes raw data from FastQ inputs, aligns the reads and performs extensive quality-control on the results. + +This pipeline is primarily used with a SLURM cluster on the [BioHPC Cluster](https://biohpc.swmed.edu/). However, the pipeline should be able to run on any system that Nextflow supports.