Skip to content

Commit 7472d1c

Browse files
committed
fix: multiple minor fixes
1 parent 200acc8 commit 7472d1c

5 files changed

Lines changed: 3 additions & 8 deletions

File tree

workflow/envs/arriba.post-deploy.sh

Lines changed: 0 additions & 4 deletions
This file was deleted.

workflow/envs/arriba.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,4 @@ channels:
22
- conda-forge
33
- bioconda
44
dependencies:
5-
- arriba =2.4
5+
- arriba =2.5

workflow/rules/common.smk

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ samples = (
1111
pd.read_csv(
1212
config["samples"],
1313
sep="\t",
14-
dtype={"sample_name": str, "group": str},
14+
dtype={"sample_name": str, "group": str, "umi_len": "Int64"},
1515
comment="#",
1616
)
1717
.set_index("sample_name", drop=False)

workflow/rules/fusion_calling.smk

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
module fusion_calling:
22
meta_wrapper:
3-
"v3.13.3/meta/bio/star_arriba"
3+
"v7.1.0/meta/bio/star_arriba"
44
config:
55
config
66

workflow/scripts/split-call-tables.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -173,7 +173,6 @@ def variants(
173173
self.pos = pos
174174
self._variants = self._load_variants()
175175
for variant in self._variants:
176-
print(variant.pos)
177176
if variant.pos == pos and variant.alts[0] == alt:
178177
yield variant
179178
if variant.pos > pos:

0 commit comments

Comments
 (0)