This shows you the differences between two versions of the page.
Next revision | Previous revision | ||
anthill_sri017 [2021/01/21 16:38] – created tmatejuk | anthill_sri017 [2023/08/01 01:08] (current) – external edit 127.0.0.1 | ||
---|---|---|---|
Line 1: | Line 1: | ||
==== description ==== | ==== description ==== | ||
- | AdapterRemoval searches for and removes adapter sequences from High-Throughput Sequencing (HTS) data and (optionally) trims low quality bases from the 3' end of reads following adapter removal. Software page : [[https:// | + | The preseq package is aimed at predicting |
==== software version ==== | ==== software version ==== | ||
- | Bellow description covers | + | Bellow description covers |
==== prepare software ==== | ==== prepare software ==== | ||
- | Login to anthill23, start interactive session in which download and compile | + | Login to anthill23, start interactive session in which download and compile |
@anthill23: | @anthill23: | ||
Line 21: | Line 21: | ||
mkdir -p / | mkdir -p / | ||
../ | ../ | ||
+ | | ||
make -j${SLURM_NPROCS} && make install | make -j${SLURM_NPROCS} && make install | ||
| | ||
Line 32: | Line 32: | ||
==== sbatch example ==== | ==== sbatch example ==== | ||
This description assumes that above step ( prepare software ) were done beforehand. \\ | This description assumes that above step ( prepare software ) were done beforehand. \\ | ||
- | Bellow slurm job creates temporary folder in your home folder (like '' | + | Bellow slurm job creates temporary folder in your home folder (like '' |
+ | Inspect | ||
- | File '' | + | File '' |
< | < | ||
Line 41: | Line 42: | ||
#SBATCH --ntasks=2 | #SBATCH --ntasks=2 | ||
#SBATCH --mem 4G | #SBATCH --mem 4G | ||
- | #SBATCH --job-name | + | #SBATCH --job-name |
#prepare temporary folder | #prepare temporary folder | ||
cd `mktemp -d -p ~/` | cd `mktemp -d -p ~/` | ||
- | # | + | # |
- | wget wget ftp://download.big.ac.cn/SorghumVB/fastq/090413_I352_FC31307AAXX_L6_SORssqRADDHAAPE_1.fq.gz | + | wget --no-check-certificate http://hgdownload-test.cse.ucsc.edu/goldenPath/mm9/encodeDCC/ |
- | #export path to AdapterRemoval | + | #export path to preseq-3.1.2 |
export PATH=$PATH:/ | export PATH=$PATH:/ | ||
- | #use AdapterRemoval software | + | #predict the yield of a future experiment if the input file is in .bam format |
- | AdapterRemoval | + | preseq lc_extrap |
</ | </ |