Skip to content
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
4 changes: 4 additions & 0 deletions VERSIONLOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Scilifelab_epps Version Log

## 20251021.1

Update EPP for parsing Run information to LIMS by correcting the path to the metadata on Preproc.

## 20251013.1

Update EPP for uploading AVITI manifest to manifest processable by TACA.
Expand Down
2 changes: 1 addition & 1 deletion scripts/aviti_run_parameter_parser.py
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ def fetch_fc(process):
def fetch_rundir(fc_id):
run_dir = ""
metadata_dir = "ngi-nas-ns"
data_dir = "AVITI_data"
data_dir = "Aviti_data"
run_dir_path = os.path.join(os.sep, "srv", metadata_dir, data_dir, f"*{fc_id}")
if len(glob.glob(run_dir_path)) == 1:
run_dir = glob.glob(run_dir_path)[0]
Expand Down
Loading