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

## 20251113.1

Set default to false for file removal in file upload, pass parameter as false in aviti samplesheet generation just to be on the safe side

## 20251105.1

Fix bugs in ONT couchdb connections
Expand Down
2 changes: 1 addition & 1 deletion scilifelab_epps/epp.py
Original file line number Diff line number Diff line change
Expand Up @@ -558,7 +558,7 @@ def upload_file(
file_slot: str,
process: Process,
lims: Lims,
remove: bool = True,
remove: bool = False,
fail_on_missing_file_slot: bool = True,
):
matching_file_slots = [
Expand Down
1 change: 1 addition & 0 deletions scripts/generate_aviti_run_manifest.py
Original file line number Diff line number Diff line change
Expand Up @@ -583,6 +583,7 @@ def main(args: Namespace):
args.file,
process,
lims,
remove=False,
)

# Move manifest(s)
Expand Down