Skip to content
This repository has been archived by the owner on Dec 6, 2024. It is now read-only.

Update run info xml regex #212

Merged
merged 3 commits into from
Feb 23, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 10 additions & 0 deletions Changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,16 @@ Changes in this log refer only to changes that make it to the 'main' branch. and

For changes in deployment, please see the [deployment changelog](deploy/cttso-ica-to-pieriandx-cdk/Changelog.md)

## 2024-02-24

> Author: Alexis Lucattini
> Email: [[email protected]](mailto:[email protected])

### Hotfixes
* Fix Run info xml regex, run info may also be named RunInfo.abc.xml (https://github.com/umccr/cttso-ica-to-pieriandx/pull/211)
* Resolves https://github.com/umccr/cttso-ica-to-pieriandx/issues/210


## 2023-11-27

> Author: Alexis Lucattini
Expand Down
2 changes: 1 addition & 1 deletion utils/globals.py
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,7 @@
#########################
# RunInfo.xml
#########################
RUN_INFO_XML_REGEX = re.compile(r"gds://(?:bssh\.\S+|production/raw_data)/Runs/([\w+|_]+)_r\.\S+/RunInfo\.xml")
RUN_INFO_XML_REGEX = re.compile(r"gds://(?:bssh\.\S+|production/raw_data)/Runs/([\w+|_]+)_r\.\S+/RunInfo(?:.*)?\.xml")

#################
# OUTPUT GLOBALS
Expand Down
Loading