Skip to content

Commit 92104bf

Browse files
author
Vinzenz
committed
removed debug data dumping
1 parent 9f0c94d commit 92104bf

10 files changed

Lines changed: 4 additions & 8 deletions

src/svirlpool/scripts/align_consensus_to_reference.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@
1515

1616
from . import util
1717

18+
1819
# %%
1920
# =============================================================================
2021
# cut alignments at given reference positions

src/svirlpool/scripts/consensus_align_lib.py

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -323,9 +323,6 @@ def save_merge_svs_in_dict_alignments_input(input, path: Path | str):
323323
log.info(f"Saved input for merge_svs_in_dict_alignments to {path}")
324324

325325

326-
327-
328-
329326
# --- horizontal merge --- #
330327
# test this!
331328
def merge_svs_in_dict_alignments(

src/svirlpool/scripts/consensus_legacy.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1262,7 +1262,6 @@ def create_read_partitions_with_initial_signal_clusters(
12621262
return all_dict_partitions, all_alignment_paths
12631263

12641264

1265-
12661265
# %%
12671266
# =============================================================================
12681267

src/svirlpool/scripts/filter_nonseparated.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -199,6 +199,7 @@ def process_func(args):
199199

200200
# %%
201201

202+
202203
def filter_nonseparated(
203204
path_bam: Path,
204205
out_path: Path,

src/svirlpool/scripts/filter_signaldepths.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,6 @@
1515
from . import util
1616

1717

18-
1918
# %%
2019
def filter_signaldepths(
2120
path_signaldepths, path_sampledicts, max_median_coverage_factor, output_path

src/svirlpool/scripts/nonunique_regions.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@
1111

1212
# %%
1313

14+
1415
def check_if_all_chromosomes_are_in_refdict(
1516
path_mappability: Path, path_reference: Path
1617
):

src/svirlpool/scripts/stratify_signals_DELs.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,6 @@
88
# from . import alignments_to_rafs
99

1010

11-
1211
# def split_DELs(
1312
# path_signaldepths: Path,
1413
# path_output: Path,

src/svirlpool/scripts/unique_regions.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,6 @@ def merge_bedfiles_and_subtract_from_reference(
5353
p5.communicate()
5454

5555

56-
5756
def create_unique_regions_bed_file(
5857
paths_bedfiles: list[Path], reference: Path, output: Path, min_size: int
5958
) -> None:

src/svirlpool/scripts/util.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2056,7 +2056,6 @@ def cut_alignments_in_regions(
20562056
return None
20572057

20582058

2059-
20602059
def insert_table_metadata(path_database: str, table_name: str, tag: str):
20612060
"""
20622061
Inserts metadata for a table into a hardcoded metadata table in the SQLite database.

src/svirlpool/scripts/vcf_to_bed.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@
66

77
import vcfpy
88

9+
910
def vcf_deletions_to_bed(path_vcf: Path, path_bed: Path, min_size: int):
1011
reader = vcfpy.Reader.from_path(path_vcf)
1112
with open(path_bed, "w") as f:

0 commit comments

Comments
 (0)