diff 0.2.1/README.md @ 0:77494b0fa3c7

"planemo upload"
author kkonganti
date Mon, 27 Jun 2022 15:55:37 -0400
parents
children 30191f39a957
line wrap: on
line diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/0.2.1/README.md	Mon Jun 27 15:55:37 2022 -0400
@@ -0,0 +1,49 @@
+# CPIPES (CFSAN PIPELINES)
+
+## The modular pipeline repository at CFSAN, FDA
+
+**CPIPES** (CFSAN PIPELINES) is a collection of modular pipelines based on **NEXTFLOW**,
+mostly for bioinformatics data analysis at **CFSAN, FDA.**
+
+---
+
+### **Pipelines**
+
+---
+**CPIPES**:
+
+ 1. `centriflaken`       : [README](./readme/centriflaken.md).
+ 2. `centriflaken_hy`    : [README](./readme/centriflaken_hy.md).
+
+#### Workflow Usage
+
+Following is the example of how to run the `centriflaken` pipeline on the **CFSAN** raven cluster.
+
+```bash
+module load cpipes/0.1.0-test
+
+cpipes --pipeline centriflaken [options]
+```
+
+Example:
+
+```bash
+cd /hpc/scratch/$USER
+mkdir nf-cpipes
+cd nf-cpipes
+cpipes \
+    --pipeline centriflaken \
+    --input /path/to/fastq_pass_dir \
+    --output /path/to/where/output/should/go \
+    --flye_nano_raw \
+    --user_email Firt.Last@fda.hhs.gov \
+    -profile raven
+```
+
+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**
+related logs, reports and trace files.
+
+### **PRE ALPHA**
+
+---
+This modular structure and flow is still in rapid development and may change depending on assessment of various computational topics and other considerations.