Does the Bioinformatics Toolbox R2023b ship with BWA index files for the human genome?

3 visualizzazioni (ultimi 30 giorni)

I want to use the "bwamem" function for human genome. Does MATLAB R2023b ship with index files for human genome? (e.g. for Build37)

Risposta accettata

MathWorks Support Team
MathWorks Support Team il 12 Mar 2024
The Bioinformatics Toolbox R2023b does not ship with BWA index files for the human genome. There are a number of publicly available databases for downloading Build37, from which you can generate the bwa indices:
An example of downloading and indexing Build37 with "bwaindex" is given below: 
GRCH37File = websave("GRCh37_latest_genomic.fna.gz", "https://ftp.ncbi.nlm.nih.gov/refseq/H_sapiens/annotation/GRCh37_latest/refseq_identifiers/GRCh37_latest_genomic.fna.gz");
GRCH37BwaIndexPrefix = "GRCH37BwaIndex"
bwaindex(GRCH37File, Prefix=GRCH37BwaIndexPrefix)

Più risposte (0)

Categorie

Scopri di più su Genomics and Next Generation Sequencing in Help Center e File Exchange

Prodotti


Release

R2023b

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by