GISTIC image for copy number analysis
7.2K
I have written two Chinese blogs for telling readers how to install GISTIC 2.0 (a famous software for copy number analysis) step by step. Recently I realize the installation steps can be implemented automatically, so I write this program.
Now, you can directly run GISTIC on hiplot platform, try it at https://hiplot.com.cn/advance/gistic2.
Update:
- 2021-04-02: add R script to clean overlap segments.
- 2020-10-26: update README to add Hiplot link and singularity example link.
- 2020-10-14: run GISTIC with Docker is supported as an entrypoint.
- 2020-03-08: add system check
git clone https://github.com/ShixiangWang/install_GISTIC
cd install_GISTIC
chmod u+x install_GISTIC2.sh
This program is a pure bash script and can be run in the following way.
./install_GISTIC2.sh args1 args2
# args1: the path to GISTIC_x_x_xx.tar.gz file
# args2: the install directory, must be absolute path, not relative path
Two ways:
docker pull shixiangwang/gistic
git clone https://github.com/ShixiangWang/install_GISTIC
cd install_GISTIC
sudo docker build -t gistic:latest .
Click example script to see how to run GISTIC in Docker.
Run the following command to go into Docker interactive terminal.
sudo docker run -it --rm --entrypoint bash shixiangwang/gistic
If you are using singularity, check this example to see how to run GISTIC.
unset DISPLAY should be added to run script for avoiding X11 related errors.
This program is tested and currently only support GISTIC 2.0.23, any suggestion or pull request is welcome.
You can clean the overlap segments byself firstly or use my written R script preprocess.R.
# Usage: Rscript preprocess.R input.seg [minimal_prob, default 0]
#
# Example: Rscript preprocess.R input.seg 5
# Filter segments with less than 5 probes and then clean overlap segments
# by weighted multiplication
If you want to thank my work, please cite my recent paper and add the link to this GitHub repo.
Antigen presentation and tumor immunogenicity in cancer immunotherapy response prediction, eLife. https://doi.org/10.7554/eLife.49020
MIT © 2019-2020 Shixiang Wang
Content type
Image
Digest
Size
1.9 GB
Last updated
about 5 years ago
docker pull shixiangwang/gistic