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

Update runinfo xml regex #206

Merged
merged 3 commits into from
Nov 26, 2023
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)

## 2023-11-27

> Author: Alexis Lucattini
> Email: [[email protected]](mailto:[email protected])
### Hotfixes
* Fix Run info xml regex, run info may also come from production/raw_data (https://github.com/umccr/cttso-ica-to-pieriandx/pull/205)
* Resolves https://github.com/umccr/cttso-ica-to-pieriandx/issues/204


## 2023-11-22

> 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+/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