Skip to content

Commit ee993c8

Browse files
πŸ› refactored files
1 parent de773f2 commit ee993c8

File tree

3 files changed

+586
-37
lines changed

3 files changed

+586
-37
lines changed

β€Žsrc/instanexus/assembly.pyβ€Ž

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828
import Bio
2929

3030
from . import helpers
31-
from . import mapping as map
31+
from . import visualization as viz
3232

3333
from tqdm import tqdm
3434
from pathlib import Path
@@ -778,13 +778,13 @@ def main(
778778
stats_path = output_path.parent / "statistics"
779779
stats_path.mkdir(parents=True, exist_ok=True)
780780

781-
mapped_scaffolds = map.process_protein_contigs_scaffold(
781+
mapped_scaffolds = viz.process_protein_contigs_scaffold(
782782
assembled_contigs=scaffolds,
783783
target_protein=protein_norm,
784784
max_mismatches=max_mismatches,
785785
min_identity=min_identity,
786786
)
787-
df_scaffolds_mapped = map.create_dataframe_from_mapped_sequences(
787+
df_scaffolds_mapped = viz.create_dataframe_from_mapped_sequences(
788788
data=mapped_scaffolds
789789
)
790790
helpers.compute_assembly_statistics(

β€Žsrc/instanexus/clustering.pyβ€Ž

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
β–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆ β–ˆβ–ˆβ–ˆβ–ˆβ–ˆ β–‘β–‘β–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆ
1212
β–‘β–‘β–‘β–‘β–‘β–‘β–‘Dβ–‘β–‘ β–‘β–‘β–‘β–‘β–‘ β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘
1313
14-
__authors__ = Marco Reverenna
14+
__authors__ = Marco Reverenna & Konstantinos Kalogeropoulus
1515
__copyright__ = Copyright 2025-2026
1616
__research-group__ = DTU Biosustain (Multi-omics Network Analytics) and DTU Bioengineering
1717
__date__ = 14 Nov 2025
@@ -22,7 +22,6 @@
2222

2323
import argparse
2424
import logging
25-
import os
2625
import shutil
2726
import subprocess
2827
import pandas as pd

0 commit comments

Comments
Β (0)