This shows you the differences between two versions of the page.
Both sides previous revisionPrevious revisionNext revision | Previous revision | ||
anthill_sri011 [2019/07/06 13:47] – tmatejuk | anthill_sri011 [2023/08/01 01:08] (current) – external edit 127.0.0.1 | ||
---|---|---|---|
Line 6: | Line 6: | ||
==== prepare software ==== | ==== prepare software ==== | ||
- | Login to anthill23 and download rMATS along with some test dataset, and gft files: | + | Login to anthill23 and download rMATS along with some test datasets, and gft files((downloading this files will take about 3 minutes)): |
@anthill23: | @anthill23: | ||
Line 20: | Line 20: | ||
wget ftp:// | wget ftp:// | ||
gunzip Homo_sapiens.GRCh37.87.gtf.gz | gunzip Homo_sapiens.GRCh37.87.gtf.gz | ||
- | wget ftp:// | ||
- | gunzip Homo_sapiens.GRCh38.91.gtf.gz | ||
==== prepare gsl lib ==== | ==== prepare gsl lib ==== | ||
- | rMATS uses gsl library that need to be prepared separately((takes about five minutes)). This library have to be compiled on computing node, so it is done in interactive mode ( | + | rMATS uses gsl library that need to be prepared separately((takes about five minutes)). This library have to be compiled on computing node, so it is done in interactive mode ([[howtouseslurm_000|SLURM, |
- | [[howtouseslurm_000|SLURM, | + | |
@anthill23: | @anthill23: | ||
Line 45: | Line 42: | ||
==== simple test ==== | ==== simple test ==== | ||
- | If above steps ( prepare software, and prepare gsl lib ) finish successfully this simple test should finish with success. | + | If above steps ( prepare software, and prepare gsl lib ) finish successfully this simple test should finish with success. |
- | [[howtouseslurm_000|SLURM, | + | |
@anthill23: | @anthill23: | ||
Line 52: | Line 48: | ||
srun -J rMATS_test --pty bash -l | srun -J rMATS_test --pty bash -l | ||
| | ||
- | cd / | + | cd / |
export LD_LIBRARY_PATH=$LD_LIBRARY_PATH:/ | export LD_LIBRARY_PATH=$LD_LIBRARY_PATH:/ | ||
python rMATS.4.0.2/ | python rMATS.4.0.2/ | ||
| | ||
... | ... | ||
- | #read output and exit when finished | + | #read output and exit interactive mode when finished |
exit | exit | ||
- | ==== sbatch example: bam ==== | + | ==== sbatch example ==== |
- | Bellow example was taken form [[rMATS User Guide|http:// | + | Bellow example was taken form [[http:// |
- | File '' | + | File '' |
< | < | ||
Line 70: | Line 66: | ||
#SBATCH --ntasks=4 | #SBATCH --ntasks=4 | ||
#SBATCH --mem 4G | #SBATCH --mem 4G | ||
+ | #SBATCH --job-name rMATS_test | ||
cd / | cd / | ||
export LD_LIBRARY_PATH=$LD_LIBRARY_PATH:/ | export LD_LIBRARY_PATH=$LD_LIBRARY_PATH:/ | ||
- | python rMATS-turbo-xxx-UCSx/rmats.py --b1 b1.txt --b2 b2.txt -gtf gtf/ | + | python |
+ | --b1 b1.txt | ||
+ | --b2 b2.txt | ||
+ | --gtf gtf/ | ||
+ | --od bam_test | ||
+ | -t paired | ||
+ | --readLength 50 \ | ||
+ | --cstat 0.0001 | ||
+ | --libType fr-unstranded | ||
</ | </ | ||
- | |||
- | Run computation with '' | ||
==== performance tests ==== | ==== performance tests ==== | ||
- | ... | + | None. At this time. |
- | < | ||
- | ... | ||
- | </ | ||