Skip to content

Commit

Permalink
Merge pull request #964 from biorack/targeted_h5file_tracker
Browse files Browse the repository at this point in the history
Targeted h5file tracker
  • Loading branch information
bkieft-usa authored Oct 22, 2024
2 parents 062cd39 + c6fb13c commit 0f5233d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion metatlas/plots/dill2plots.py
Original file line number Diff line number Diff line change
Expand Up @@ -3025,7 +3025,7 @@ def get_metatlas_files(experiment: Union[str, Sequence[str]] = '%', name: str =
"""
batches = [experiment] if isinstance(experiment, str) else experiment
files = list(itertools.chain.from_iterable(
[metob.retrieve('LcmsRun', experiment=f"{batch.rstrip('%')}%", name=name, username='*') for batch in batches]
[metob.retrieve('LcmsRun', experiment=batch.rstrip('%'), name=name, username='*') for batch in batches]
))
if most_recent:
files = filter_metatlas_objects_to_most_recent(files, 'mzml_file')
Expand Down

0 comments on commit 0f5233d

Please sign in to comment.