This repository was archived by the owner on Nov 8, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
6e1de21
commit 0df901b
Showing
1 changed file
with
16 additions
and
3 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,21 @@ | ||
# CTG_pipeline | ||
Data processing pipeline for PRISM CTG screens. | ||
|
||
To process raw data from a screen use `process_CTG.R`. | ||
To process raw data from a screen use `pipeline.sh` or `process_CTG.R`. Or using Docker run | ||
``` bash | ||
docker pull cmap/ctg:latest | ||
docker run -it | ||
-v ~/ctg_data:/data | ||
-v ~/ctg_results:/resuts \ | ||
cmap/ctg:latest \ | ||
-f data/mergedfile.csv \ | ||
-m data/mapping.csv \ | ||
-r data/raw_data.csv \ | ||
-o results \ | ||
-p <PROJECT> | ||
``` | ||
replacing `<PROJECT>` with the name of the project and all other paths with the path to the appropriate data. | ||
|
||
To generate a report for a screen use `CTG_report.Rmd`. | ||
To generate a report for a screen use `CTG_report.Rmd` changing the data path parameter to point to processed CTG data. | ||
|
||
Docker image is on [Docker Hub](https://hub.docker.com/repository/docker/aboghoss/ctg) | ||
The Docker image is on [Docker Hub](https://hub.docker.com/repository/docker/cmap/ctg). |