Mercurial > repos > galaxy-australia > alphafold2
diff scripts/outputs.py @ 22:3f188450ca4f draft default tip
planemo upload for repository https://github.com/usegalaxy-au/tools-au commit d626bb28203543a70d3fc60d662cb054bc3cef7c
author | galaxy-australia |
---|---|
date | Wed, 30 Oct 2024 21:46:34 +0000 |
parents | e7f1b552a695 |
children |
line wrap: on
line diff
--- a/scripts/outputs.py Tue Oct 29 02:15:36 2024 +0000 +++ b/scripts/outputs.py Wed Oct 30 21:46:34 2024 +0000 @@ -113,12 +113,13 @@ def _sniff_model_preset(self) -> bool: """Check if the run was multimer or monomer.""" - with open(self.workdir / 'relax_metrics.json') as f: - if '_multimer_' in f.read(): - return PRESETS.multimer - if '_ptm_' in f.read(): - return PRESETS.monomer_ptm - return PRESETS.monomer + for path in self.workdir.glob('*.pkl'): + if 'feature' not in path.name: + if '_multimer_' in path.name: + return PRESETS.multimer + if '_ptm_' in path.name: + return PRESETS.monomer_ptm + return PRESETS.monomer class ExecutionContext: