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

Commit

Permalink
Merge pull request #211 from umccr/enhancement/update-run-info-xml
Browse files Browse the repository at this point in the history
Update runinfo xml regex
  • Loading branch information
alexiswl authored Feb 23, 2024
2 parents 962d813 + 6322165 commit 974b54d
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 1 deletion.
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

0 comments on commit 974b54d

Please sign in to comment.