Bismark-Teaching: Difference between revisions
(Created page with " Category:TeachingCategory:SoftwareCategory:Bioinformatics === Category === Bioinformatics === Program On === Teaching === Version === 2.2.26 ==...") |
No edit summary |
||
Line 1: | Line 1: | ||
[[Category:Teaching]][[Category:Software]][[Category:Bioinformatics]] | [[Category:Teaching]][[Category:Software]][[Category:Bioinformatics]] | ||
=== Category === | === Category === | ||
Bioinformatics | Bioinformatics | ||
=== Program On === | === Program On === | ||
Teaching | Teaching | ||
=== Version === | === Version === | ||
0.22.1 | |||
=== Author / Distributor === | === Author / Distributor === | ||
Felix Krueger, Bioinformatics Group at the [http://www.bioinformatics.babraham.ac.uk/projects/download.html#bismark Babraham Institute] | |||
[http:// | |||
=== Description === | === Description === | ||
Bismark is a tool to map bisulfite converted sequence reads and determine cytosine methylation states. For more information, please see [http://www.bioinformatics.babraham.ac.uk/projects/download.html#bismark Babraham Institute] | |||
=== Running Program === | === Running Program === | ||
*Version 0.22.1, installed at /usr/local/apps/eb/Bismark/0.22.1-foss-2016b | |||
To use this version, please load the module with | To use this version of Bismark, please first load the module with | ||
<pre class="gscript"> | <pre class="gscript"> | ||
module load Bismark/0.22.1-foss-2016b | |||
</pre> | </pre> | ||
Line 46: | Line 28: | ||
<div class="gscript2"> | <div class="gscript2"> | ||
<nowiki>#</nowiki>!/bin/bash<br> | <nowiki>#</nowiki>!/bin/bash<br> | ||
<nowiki>#</nowiki>SBATCH --job-name= | <nowiki>#</nowiki>SBATCH --job-name=jobName<br> | ||
<nowiki>#</nowiki>SBATCH --partition=batch<br> | <nowiki>#</nowiki>SBATCH --partition=batch<br> | ||
<nowiki>#</nowiki>SBATCH --mail-type=ALL<br> | <nowiki>#</nowiki>SBATCH --mail-type=ALL<br> | ||
Line 53: | Line 35: | ||
<nowiki>#</nowiki>SBATCH --mem=<u>10gb</u><br> | <nowiki>#</nowiki>SBATCH --mem=<u>10gb</u><br> | ||
<nowiki>#</nowiki>SBATCH --time=<u>08:00:00</u><br> | <nowiki>#</nowiki>SBATCH --time=<u>08:00:00</u><br> | ||
<nowiki>#</nowiki>SBATCH --output= | <nowiki>#</nowiki>SBATCH --output=Bismark.%j.out<br> | ||
<nowiki>#</nowiki>SBATCH --error= | <nowiki>#</nowiki>SBATCH --error=Bismark.%j.err<br> | ||
cd $SLURM_SUBMIT_DIR<br> | cd $SLURM_SUBMIT_DIR<br> | ||
module load Bismark/0.22.1-foss-2016b<br> | |||
bismark --parallel 4 <u>[options]</u><br> | |||
</div> | </div> | ||
In the real submission script, at least all the above underlined values need to be reviewed or to be replaced by the proper values. | In the real submission script, at least all the above underlined values need to be reviewed or to be replaced by the proper values. | ||
Line 73: | Line 56: | ||
<pre class="gcommand"> | <pre class="gcommand"> | ||
</pre> | </pre> | ||
Line 200: | Line 62: | ||
=== Installation === | === Installation === | ||
Binary code downloaded from [http://www.bioinformatics.babraham.ac.uk/projects/download.html#bismark Bismark] | |||
=== System === | === System === | ||
64-bit Linux | 64-bit Linux |
Revision as of 09:21, 25 November 2019
Category
Bioinformatics
Program On
Teaching
Version
0.22.1
Author / Distributor
Felix Krueger, Bioinformatics Group at the Babraham Institute
Description
Bismark is a tool to map bisulfite converted sequence reads and determine cytosine methylation states. For more information, please see Babraham Institute
Running Program
- Version 0.22.1, installed at /usr/local/apps/eb/Bismark/0.22.1-foss-2016b
To use this version of Bismark, please first load the module with
module load Bismark/0.22.1-foss-2016b
Here is an example of a shell script, sub.sh, to run on the batch queue:
#!/bin/bash
#SBATCH --job-name=jobName
#SBATCH --partition=batch
#SBATCH --mail-type=ALL
#SBATCH --mail-user=username@uga.edu
#SBATCH --ntasks=1
#SBATCH --mem=10gb
#SBATCH --time=08:00:00
#SBATCH --output=Bismark.%j.out
#SBATCH --error=Bismark.%j.err
cd $SLURM_SUBMIT_DIR
module load Bismark/0.22.1-foss-2016b
bismark --parallel 4 [options]
In the real submission script, at least all the above underlined values need to be reviewed or to be replaced by the proper values.
Please refer to Running_Jobs_on_the_teaching_cluster, Run X window Jobs and Run interactive Jobs for more details of running jobs at Teaching cluster.
Here is an example of job submission command:
sbatch ./sub.sh
Documentation
Installation
Binary code downloaded from Bismark
System
64-bit Linux