Structure-Sapelo2: Difference between revisions
(added info about mainparams and extraparams file) |
|||
Line 23: | Line 23: | ||
Also refer to [[Running Jobs on Sapelo2]] | Also refer to [[Running Jobs on Sapelo2]] | ||
The latest version is at /apps/eb/ | The latest version is at /apps/eb/Structure/2.3.4-GCC-11.2.0 | ||
To use this program, please first load its module with | To use this program, please first load its module with | ||
<pre class="gcommand"> | <pre class="gcommand"> | ||
module load | module load Structure/2.3.4-GCC-11.2.0 | ||
</pre> | </pre> | ||
Line 44: | Line 44: | ||
<nowiki>#</nowiki>SBATCH --ntasks=<u>1</u><br><nowiki>#</nowiki>SBATCH --mem=<u>10gb</u><br><nowiki>#</nowiki>SBATCH --time=<u>08:00:00</u><br><nowiki>#</nowiki>SBATCH --output=<u>structurejob</u>.%j.out<br><nowiki>#</nowiki>SBATCH --error=<u>structurejob</u>.%j.err<br> | <nowiki>#</nowiki>SBATCH --ntasks=<u>1</u><br><nowiki>#</nowiki>SBATCH --mem=<u>10gb</u><br><nowiki>#</nowiki>SBATCH --time=<u>08:00:00</u><br><nowiki>#</nowiki>SBATCH --output=<u>structurejob</u>.%j.out<br><nowiki>#</nowiki>SBATCH --error=<u>structurejob</u>.%j.err<br> | ||
cd $SLURM_SUBMIT_DIR<br>module load | cd $SLURM_SUBMIT_DIR<br>module load Structure/2.3.4-GCC-11.2.0<br> | ||
structure [options] | structure [options] |
Latest revision as of 08:39, 14 May 2024
Category
Bioinformatics
Program On
Sapelo2
Version
2.3.4
Author / Distributor
Description
"The program structure is a free software package for using multi-locus genotype data to investigate population structure. Its uses include inferring the presence of distinct populations, assigning individuals to populations, studying hybrid zones, identifying migrants and admixed individuals, and estimating population allele frequencies in situations where many individuals are migrants or admixed. " More details are at Structure
Running Program
Also refer to Running Jobs on Sapelo2
The latest version is at /apps/eb/Structure/2.3.4-GCC-11.2.0
To use this program, please first load its module with
module load Structure/2.3.4-GCC-11.2.0
To run STUCTURE you will need both a mainparams file and an extraparams file. These two files contain program parameters which are set by the user, and are read every time the program executes. Make sure both of those files are in your working directory when you use structure. You can also specify those files with the -m (mainparams) and -e (extraparams) options to the structure command.
More about the mainparams and extraparams file can be found here:
https://web.stanford.edu/group/pritchardlab/software/readme/node32.html
Examples of the mainparams file and extraparams file which you can use as templates can be found at /apps/eb/structure/2.3.4-foss-2019b/mainparams and /apps/eb/structure/2.3.4-foss-2019b/extraparams respectively.
Here is an example of a shell script sub.sh to run on at the batch queue:
#!/bin/bash
#SBATCH --job-name=structurejob
#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=structurejob.%j.out
#SBATCH --error=structurejob.%j.err
cd $SLURM_SUBMIT_DIR
module load Structure/2.3.4-GCC-11.2.0
structure [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. And [options] should be replaced by any options you want to use.
Here is an example of job submission
sbatch ./sub.sh
Documentation
module load structure/2.3.4-foss-2019b structure -h ---------------------------------------------------- STRUCTURE by Pritchard, Stephens and Donnelly (2000) and Falush, Stephens and Pritchard (2003) Code by Pritchard, Falush and Hubisz Version 2.3.4 (Jul 2012) ---------------------------------------------------- Reading file "mainparams". datafile is infile Reading file "extraparams". Note: RANDOMIZE is set to 1. The random number generator will be initialized using the system clock, ignoring any specified value of SEED. Unable to open the file infile. Exiting the program due to error(s) listed above.
Installation
source code from Structure
System
64-bit Linux