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.
Rebrand template placeholders w/ CHAMPAGNE name
- Loading branch information
1 parent
61c480a
commit 3ba2e7b
Showing
22 changed files
with
65 additions
and
157 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,18 +1,5 @@ | ||
## TOOL_NAME v0.1.0.apha | ||
|
||
### API-breaking changes | ||
## CHAMPAGNE development version | ||
|
||
- change 1 | ||
- example 2 | ||
|
||
### New features | ||
|
||
- new feat 1 | ||
|
||
### Bug fixes | ||
|
||
- description of bug fixed | ||
|
||
## TOOL_NAME v0.1.0 | ||
|
||
This is the first release of TOOL_NAME 🎉 | ||
_This project is under active development_ | ||
<!--This is the first release of CHAMPAGNE 🎉--> |
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,5 +1,7 @@ | ||
Information on who the pipeline was developed for, and a statement if it's only been tested on Biowulf. For example: | ||
TODO 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 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,9 +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 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. | ||
|
||
# Contributions | ||
# Contributors | ||
|
||
The following members contributed to the development of the CARLISLE pipeline: | ||
The following members contributed to the development of CHAMPAGNE: | ||
|
||
- [Samantha Sevilla](https://github.com/slsevilla) | ||
- [Kelly Sovacool](https://github.com/kelly-sovacool) | ||
- [Vishal Koparde](https://github.com/kopardev) | ||
|
||
SS contributed to the generating the source code and all members contributed to the main concepts and analysis. | ||
KLS developed the source code. | ||
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,16 +1,15 @@ | ||
This should set the stage for all of the pipeline requirements. Examples are listed below. | ||
|
||
# Overview | ||
|
||
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. | ||
TODO | ||
|
||
## 1. Getting Started | ||
|
||
## 1.1 Introduction | ||
|
||
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). | ||
TODO | ||
|
||
The following are sub-commands used within CARLISLE: | ||
The following are sub-commands available: | ||
|
||
- initialize: initialize the pipeline | ||
- dryrun: predict the binding of peptides to any MHC molecule | ||
|
@@ -22,16 +21,13 @@ The following are sub-commands used within CARLISLE: | |
- report: create SNAKEMAKE report | ||
- testrun: copies test manifests and files to WORKDIR | ||
|
||
## 1.2 Setup Dependencies | ||
## 1.2 Install 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. | ||
|
||
- bedtools: "bedtools/2.30.0" | ||
- bedops: "bedops/2.4.40" | ||
TODO | ||
|
||
## 1.3 Login to the cluster | ||
|
||
CARLISLE has been exclusively tested on Biowulf HPC. Login to the cluster's head node and move into the pipeline location. | ||
TODO biowulf, frce, other cloud options? | ||
|
||
``` | ||
# ssh into cluster's head node | ||
|
@@ -43,6 +39,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. | ||
|
||
``` | ||
# Grab an interactive node | ||
# Start 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
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 |
---|---|---|
|
@@ -6,12 +6,13 @@ requires = [ | |
build-backend = 'setuptools.build_meta' | ||
|
||
[project] | ||
name = 'TOOL_NAME' | ||
name = 'CHAMPAGNE' | ||
dynamic = ['version','readme'] | ||
description = "One-line description of your tool." | ||
keywords = ["bioinformatics", "nextflow"] | ||
authors = [ | ||
{name = "Firstname Lastname", email = "[email protected]"}, | ||
{name = "Kelly Sovacool", email = "[email protected]"}, | ||
{name = "Vishal Koparde", email = "[email protected]"}, | ||
] | ||
maintainers = [ | ||
{name = "CCR Collaborative Bioinformatics Resource", email = "[email protected]"}, | ||
|
@@ -46,16 +47,16 @@ test = [ | |
] | ||
|
||
[project.scripts] | ||
TOOL_NAME = "TOOL_NAME.__main__:main" | ||
CHAMPAGNE = "CHAMPAGNE.__main__:main" | ||
|
||
[project.urls] | ||
Homepage = "https://ccbr.github.io/TOOL_NAME" | ||
Documentation = "https://ccbr.github.io/TOOL_NAME" | ||
Repository = "https://github.com/CCBR/TOOL_NAME" | ||
Changelog = "https://github.com/CCBR/TOOL_NAME/blob/main/docs/CHANGELOG.md" | ||
Homepage = "https://ccbr.github.io/CHAMPAGNE" | ||
Documentation = "https://ccbr.github.io/CHAMPAGNE" | ||
Repository = "https://github.com/CCBR/CHAMPAGNE" | ||
Changelog = "https://github.com/CCBR/CHAMPAGNE/blob/main/docs/CHANGELOG.md" | ||
|
||
[tools.setuptools] | ||
packages = ["TOOL_NAME"] | ||
packages = ["CHAMPAGNE"] | ||
|
||
[tool.setuptools.dynamic] | ||
version = {file = "src/VERSION"} | ||
|
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 @@ | ||
0.1.0 |
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
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
This file was deleted.
Oops, something went wrong.