annotate 0.2.1/README.md @ 67:04c9f550eb08

"planemo upload"
author kkonganti
date Wed, 13 Jul 2022 13:55:47 -0400
parents 30191f39a957
children
rev   line source
kkonganti@0 1 # CPIPES (CFSAN PIPELINES)
kkonganti@0 2
kkonganti@0 3 ## The modular pipeline repository at CFSAN, FDA
kkonganti@0 4
kkonganti@0 5 **CPIPES** (CFSAN PIPELINES) is a collection of modular pipelines based on **NEXTFLOW**,
kkonganti@0 6 mostly for bioinformatics data analysis at **CFSAN, FDA.**
kkonganti@0 7
kkonganti@0 8 ---
kkonganti@0 9
kkonganti@0 10 ### **Pipelines**
kkonganti@0 11
kkonganti@0 12 ---
kkonganti@0 13 **CPIPES**:
kkonganti@0 14
kkonganti@0 15 1. `centriflaken` : [README](./readme/centriflaken.md).
kkonganti@0 16 2. `centriflaken_hy` : [README](./readme/centriflaken_hy.md).
kkonganti@0 17
kkonganti@0 18 #### Workflow Usage
kkonganti@0 19
kkonganti@0 20 Following is the example of how to run the `centriflaken` pipeline on the **CFSAN** raven cluster.
kkonganti@0 21
kkonganti@0 22 ```bash
kkonganti@47 23 module load cpipes/0.2.1
kkonganti@0 24
kkonganti@0 25 cpipes --pipeline centriflaken [options]
kkonganti@0 26 ```
kkonganti@0 27
kkonganti@0 28 Example:
kkonganti@0 29
kkonganti@0 30 ```bash
kkonganti@0 31 cd /hpc/scratch/$USER
kkonganti@0 32 mkdir nf-cpipes
kkonganti@0 33 cd nf-cpipes
kkonganti@0 34 cpipes \
kkonganti@0 35 --pipeline centriflaken \
kkonganti@0 36 --input /path/to/fastq_pass_dir \
kkonganti@0 37 --output /path/to/where/output/should/go \
kkonganti@47 38 --user_email First.Last@fda.hhs.gov \
kkonganti@0 39 -profile raven
kkonganti@0 40 ```
kkonganti@0 41
kkonganti@0 42 The above command would run the pipeline and store the output wherever the author of the workflow decided it to be and the **NEXTFLOW** reports are always stored in the current working directory from where `cpipes` is run. For example, for the above command, a directory called `CPIPES-centriflaken` would hold all the **NEXTFLOW**
kkonganti@0 43 related logs, reports and trace files.
kkonganti@0 44
kkonganti@47 45 ### **BETA**
kkonganti@0 46
kkonganti@0 47 ---
kkonganti@47 48 The development of the modular structure and flow is an ongoing effort and may change depending on assessment of various computational topics and other considerations.