Mercurial > repos > galaxyp > maxquant
comparison mqparam.py @ 7:d253b379322b draft
"planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/maxquant commit f63ff6d5d0c44012a17e87293811765951655bd5"
author | galaxyp |
---|---|
date | Mon, 01 Jun 2020 11:51:25 -0400 |
parents | 2133b0be850a |
children | 37d669de2828 |
comparison
equal
deleted
inserted
replaced
6:2133b0be850a | 7:d253b379322b |
---|---|
341 silac = pg.pop('labelMods', False) | 341 silac = pg.pop('labelMods', False) |
342 if silac: | 342 if silac: |
343 self[i].set_silac(*silac) | 343 self[i].set_silac(*silac) |
344 isobaricLabels = pg.pop('isobaricLabels', False) | 344 isobaricLabels = pg.pop('isobaricLabels', False) |
345 if isobaricLabels: | 345 if isobaricLabels: |
346 for l in isobaricLabels: | 346 for ibl in isobaricLabels: |
347 self[i].set_isobaric_label(*l) | 347 self[i].set_isobaric_label(*ibl) |
348 for el in ['fixedModifications', 'variableModifications', 'enzymes']: | 348 for el in ['fixedModifications', 'variableModifications', 'enzymes']: |
349 lst = pg.pop(el, None) | 349 lst = pg.pop(el, None) |
350 if lst is not None: | 350 if lst is not None: |
351 self[i].set_list_param(el, lst) | 351 self[i].set_list_param(el, lst) |
352 for key in pg: | 352 for key in pg: |