generated from CCBR/CCBR_NextflowTemplate
-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
docs: update from nextflow-template changes
allows changelog, contributing, etc to remain in canonical location
- Loading branch information
1 parent
fdadf1d
commit 0a1f1be
Showing
14 changed files
with
108 additions
and
38 deletions.
There are no files selected for viewing
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
--8<-- "CHANGELOG.md" | ||
|
||
<!-- the contents are automatically inserted here. do not edit this file, instead edit the file specified above to make changes. --> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
--8<-- ".github/CONTRIBUTING.md" | ||
|
||
<!-- the contents are automatically inserted here. do not edit this file, instead edit the file specified above to make changes. --> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
Should include a list of all contributors, including GitHub handles when appropriate. In addition, a statement of who contributed to the source code specifically, identified by initials. An example is included below. | ||
|
||
TODO: populate this automagically similar to https://nf-co.re/contributors? or link to GitHub contributor page? could use gh action: https://github.com/lowlighter/metrics/blob/master/source/plugins/contributors/README.md | ||
|
||
# Contributions | ||
|
||
The following members contributed to the development of the CARLISLE pipeline: | ||
|
||
- [Samantha Sevilla](https://github.com/slsevilla) | ||
|
||
SS contributed to the generating the source code and all members contributed to the main concepts and analysis. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,11 @@ | ||
TODO Information on who the pipeline was developed for, and a statement if it's only been tested on Biowulf. For example: | ||
<!-- the README is inserted here automatically--> | ||
|
||
--8<-- "README.md" | ||
|
||
<!--- write additional info that you only want to appear in the docs index here --> | ||
|
||
Information on who the pipeline was developed for, and a statement if it's only been tested on Biowulf. For example: | ||
|
||
It has been developed and tested solely on NIH [HPC Biowulf](https://hpc.nih.gov/). | ||
|
||
Also include a workflow image to summarize the pipeline. | ||
|
||
TODO: programmatically add readme contents here? similar to pkgdown. |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,14 +1,16 @@ | ||
This should set the stage for all of the pipeline requirements. Examples are listed below. | ||
|
||
# Overview | ||
|
||
TODO | ||
The CARLISLE github repository is stored locally, and will be used for project deployment. Multiple projects can be deployed from this one point simultaneously, without concern. | ||
|
||
## 1. Getting Started | ||
|
||
## 1.1 Introduction | ||
|
||
TODO | ||
The CARLISLE Pipelie beings with raw FASTQ files and performs trimming followed by alignment using [BOWTIE2](https://bowtie-bio.sourceforge.net/bowtie2/index.shtml). Data is then normalized through either the use of an user-species species (IE E.Coli) spike-in control or through the determined library size. Peaks are then called using [MACS2](https://hbctraining.github.io/Intro-to-ChIPseq/lessons/05_peak_calling_macs.html), [SEACR](https://github.com/FredHutch/SEACR), and [GoPEAKS](https://genomebiology.biomedcentral.com/articles/10.1186/s13059-022-02707-w) with various options selected by the user. Peaks are then annotated, and summarized into reports. If designated, differential analysis is performed using [DESEQ2](https://bioconductor.org/packages/release/bioc/html/DESeq2.html). QC reports are also generated with each project using [FASTQC](https://www.bioinformatics.babraham.ac.uk/projects/fastqc/) and [MULTIQC](https://multiqc.info/). Annotations are added using [HOMER](http://homer.ucsd.edu/homer/ngs/annotation.html) and [ROSE](https://github.com/stjude/ROSE). GSEA Enrichment analysis predictions are added using [CHIPENRICH](https://bioconductor.org/packages/devel/bioc/vignettes/chipenrich/inst/doc/chipenrich-vignette.html). | ||
|
||
The following are sub-commands available: | ||
The following are sub-commands used within CARLISLE: | ||
|
||
- initialize: initialize the pipeline | ||
- dryrun: predict the binding of peptides to any MHC molecule | ||
|
@@ -20,13 +22,16 @@ The following are sub-commands available: | |
- report: create SNAKEMAKE report | ||
- testrun: copies test manifests and files to WORKDIR | ||
|
||
## 1.2 Install Dependencies | ||
## 1.2 Setup Dependencies | ||
|
||
CARLISLE has several dependencies listed below. These dependencies can be installed by a sysadmin. All dependencies will be automatically loaded if running from Biowulf. | ||
|
||
TODO | ||
- bedtools: "bedtools/2.30.0" | ||
- bedops: "bedops/2.4.40" | ||
|
||
## 1.3 Login to the cluster | ||
|
||
TODO biowulf, frce, other cloud options? | ||
CARLISLE has been exclusively tested on Biowulf HPC. Login to the cluster's head node and move into the pipeline location. | ||
|
||
``` | ||
# ssh into cluster's head node | ||
|
@@ -38,6 +43,6 @@ ssh -Y [email protected] | |
An interactive session should be started before performing any of the pipeline sub-commands, even if the pipeline is to be executed on the cluster. | ||
|
||
``` | ||
# Start an interactive node | ||
# Grab an interactive node | ||
sinteractive --time=12:00:00 --mem=8gb --cpus-per-task=4 --pty bash | ||
``` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters