Renaming project to NSBDiagnosisToolkit

This commit is contained in:
2025-01-03 19:56:55 +00:00
parent 6ff0dca3ae
commit 2cd56ca1ec
23 changed files with 29 additions and 29 deletions

View File

@@ -1,6 +1,6 @@
import os
from mlstmyfasta.engine.local.abif import read_abif
from nsbdiagnosistoolkit.engine.local.abif import read_abif
async def test_load_sanger_sequence_has_data():
assert os.path.exists("tests/resources/1I1_F_P1815443_047.ab1")

View File

@@ -1,4 +1,4 @@
from mlstmyfasta.engine.local.fasta import read_fasta
from nsbdiagnosistoolkit.engine.local.fasta import read_fasta
async def test_fasta_reader_not_none():

View File

@@ -1,6 +1,6 @@
from Bio import SeqIO
from mlstmyfasta.engine.data.MLST import Allele, MLSTProfile
from mlstmyfasta.engine.remote.databases.institutpasteur.profiling import InstitutPasteurProfiler
from nsbdiagnosistoolkit.engine.data.MLST import Allele, MLSTProfile
from nsbdiagnosistoolkit.engine.remote.databases.institutpasteur.profiling import InstitutPasteurProfiler
async def test_profiling_results_in_exact_matches_when_exact():

View File

@@ -1,4 +1,4 @@
from mlstmyfasta.engine.remote.databases.ncbi.genbank import fetch_ncbi_genbank
from nsbdiagnosistoolkit.engine.remote.databases.ncbi.genbank import fetch_ncbi_genbank
async def test_fetch_ncbi_genbank_with_id_works():

View File

@@ -1,7 +1,7 @@
from mlstmyfasta.engine.annotate import annotate_from_genbank, fetch_ncbi_genbank
from nsbdiagnosistoolkit.engine.annotate import annotate_from_genbank, fetch_ncbi_genbank
from Bio import SeqIO
from mlstmyfasta.engine.data.genomics import AnnotatedString
from nsbdiagnosistoolkit.engine.data.genomics import AnnotatedString
async def test_annotate_from_genbank_for_adk_annotation():
sequence = str(SeqIO.read("tests/resources/tohama_I_bpertussis.fasta", "fasta").seq)