Skip to content

Commit

Permalink
updating database / May2022
Browse files Browse the repository at this point in the history
  • Loading branch information
azufre451 committed May 27, 2022
1 parent b3e5229 commit bc96bf3
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 5 deletions.
4 changes: 3 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,9 @@
# MetaMLST #
A computational pipeline for MLST typing from metagenomic data

MetaMLST performs an *in-silico* Multi Locus Sequence Typing (MLST) Analysis on metagenomic samples. MetaMLST achieves cultivation- and assembly- free strain level tracking and detects all the species to which the standard MLST protocol is applicable.
MetaMLST performs an *in-silico* Multi Locus Sequence Typing (MLST) Analysis on metagenomic samples, directly from raw reads. MetaMLST achieves cultivation- and assembly- free strain level tracking and profiles all the species to which the standard MLST protocol is applicable.

**Current database version**: [ May 2022 ]

### What can I use MetaMLST for? ###

Expand Down
8 changes: 4 additions & 4 deletions metaMLST_functions.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,8 +25,8 @@
from io import StringIO

__author__ = 'Moreno Zolfo ([email protected])'
__version__ = '1.2.2'
__date__ = '29 December 2020'
__version__ = '1.2.3'
__date__ = '27 May 2022'

def byte_to_megabyte(byte):
"""
Expand All @@ -38,9 +38,9 @@ def byte_to_megabyte(byte):

def check_install():
import zipfile,os
METAMLST_DBPATH=os.path.abspath(os.path.dirname(__file__))+'/metamlst_databases/metamlstDB_2021.db'
METAMLST_DBPATH=os.path.abspath(os.path.dirname(__file__))+'/metamlst_databases/metamlstDB_2022.db'
METAMLST_DBFOLDER=os.path.abspath(os.path.dirname(__file__))+'/metamlst_databases/'
METAMLST_URL='https://zenodo.org/record/4399251/files/metamlstDB_2021.db.zip?download=1'
METAMLST_URL='https://zenodo.org/record/6586741/files/metamlstDB_2022.db.zip?download=1'

if not os.path.isdir(METAMLST_DBFOLDER):
os.mkdir(METAMLST_DBFOLDER,mode=0o775)
Expand Down

0 comments on commit bc96bf3

Please sign in to comment.