Skip to content

Commit 38fc3e2

Browse files
authored
Merge pull request #74 from maxplanck-ie/dev_wd
bugfixes relacs, email, install
2 parents e9e65d8 + f963427 commit 38fc3e2

File tree

3 files changed

+5
-3
lines changed

3 files changed

+5
-3
lines changed

BRB/demultiplex_relacs.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -72,6 +72,8 @@ def readSampleTable(sampleTable):
7272
continue
7373

7474
sample, barcode, label = elem
75+
# sanitize label
76+
label = label.replace(' ', '_')
7577
if sample not in d:
7678
d[sample] = dict()
7779
d[sample][barcode] = label

BRB/email.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ def finishedEmail(config, msg):
3939

4040
mailer['To'] = recipient
4141
# Table
42-
tabHead = ['Project', 'organism', 'libraryType', 'workflow', 'workflow_status', 'parkour_status', 'sambaUpdate']
42+
tabHead = ['Project', 'organism', 'libraryType', 'workflow', 'workflow_status', 'parkour_status', 'sambaUpdate', 'reruns']
4343
message = _html.render() + '\n\n' + tabulate(
4444
msg, tabHead, tablefmt="html", disable_numparse=True
4545
)

pyproject.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[build-system]
22
requires = ["setuptools >= 61.0", "setuptools_scm>=8"]
3-
build-backed = "setuptools.build_meta"
3+
build-backend = "setuptools.build_meta"
44

55
[project]
66
name = 'BRB'
@@ -44,4 +44,4 @@ lint.ignore = [
4444
"F841",
4545
"E712",
4646
"E741"
47-
]
47+
]

0 commit comments

Comments
 (0)