Difference between revisions of "Bioinformatics Databases"

From Research Computing Center Wiki
Jump to navigation Jump to search
Line 50: Line 50:
 
! scope="col" | Name
 
! scope="col" | Name
 
! scope="col" class="unsortable" | Version  
 
! scope="col" class="unsortable" | Version  
! scope="col" | Cluster
+
! scope="col" | Module Available
 
|-
 
|-
 
| [[akblab]] ||  01/28/2018 || [[:Category:Sapelo2|Sapelo2]]
 
| [[akblab]] ||  01/28/2018 || [[:Category:Sapelo2|Sapelo2]]

Revision as of 12:00, 29 June 2021

As part of our services, the GACRC builds and hosts local copies of frequently cited application data, and provides assistance for sharing data among GACRC members.Datasets are located in the commonly shared "/db" filesystem. NCBI BLAST datasets are located in "/db/ncbiblast/" and are organized by date.

NCBI BLAST Datasets can be loaded in a similar way to software modules. This allows users to replicate results by always being able to use a time stamped version of a database. The time stamp corresponds to the download date of the dataset. To search for available CCBI BLAST+ dataset modules run the command:

ml spider ncbiblastdb

You can then load a database by running the command module load. For example to load the databases timestamped at 06/16/2021:

module load ncbiblastdb/20210616

Loading this module sets the environment variable BLASTDB to /db/ncbiblast/20210616. This allows BLAST+ to search that directory for databases. You can then use the name of the database you would like to use.(nt, nr, etc.) Here is an example of a shell script to run BLAST on the batch queue using the database nt:

#!/bin/bash
#SBATCH --job-name=j_BLAST+
#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=BLAST+.%j.out
#SBATCH --error=BLAST+.%j.err

cd $SLURM_SUBMIT_DIR
module load BLAST+/2.9.0-gompi-2019b
module load ncbiblastdb/20210616
blastn [options] -db nt

In the real submission script, at least all the above underlined values need to be reviewed or to be replaced by the proper values.

NCBI's nr and nt datasets are the most commonly used at the GACRC. GACRC staff will update these datasets every month as well as other NCBI BLST datasets: cdd, human_genome, mouse_genome, nrte, refseq_protein, refseq_rna, swissprot, and taxdb datasets.

Various subject datasets, e.g. pfam, bowtie indexes of human and mouse, and NCBI bacterial datasets, are hosted as well. However, these datasets are not accessed with a module. These datasets either don’t need updating, the source does not update frequently, or the datasets are not used frequently by our users. These datasets will only be updated by user request. Instead of using a module, to use these databases, use the path to the data bases in your script.


For datasets requested by individual lab groups, GACRC encourages users to maintain their own copies of databases, whose files can be installed in their group's shared "/work" area. Similarly for datasets frequently updated by their source, the GACRC encourages users to maintain their own copies of these public databases.

The set of data which are regularly updated is open to review, and can be expanded based on available GACRC resources.



Installed Bioinformatics Databases

Name Version Module Available
akblab 01/28/2018 Sapelo2
Bacteria NCBI 12/21/2017 Sapelo2
hg19,mm10 & mm9 07/29/2016 Sapelo2
cellranger 10/29/2019 Sapelo2
conspred_ressources 02/02/2017 Sapelo2
gss Sapelo2
htgs Sapelo2
hg Sapelo2
NCBI BLAST Database every other month Sapelo2
NCBI Fasta every other month Sapelo2
pfam 27.0 Sapelo2
Refseq Sapelo2
TaxDB Sapelo2
Uniprot 06/28/2018 Sapelo2
Uniref 06/28/2018 Sapelo2
wublast Sapelo2
decontaMiner 08/30/2019 Sapelo2