view mzml_id_getter.py @ 4:a85b9670051c draft

planemo upload for repository https://github.com/RECETOX/galaxytools/tree/master/tools/recetox_aplcms commit ce3d81b59ef0895b61fcb1e17fa1553ccb28b077
author recetox
date Wed, 03 May 2023 15:18:57 +0000
parents abe783e0daca
children
line wrap: on
line source

#!/usr/bin/env python

import argparse
import sys

from pymzml.run import Reader


def main(argv):
    parser = argparse.ArgumentParser(description='Get run ID from an mzML file.')
    parser.add_argument('mzml_file', help='Path to an mzML file to get run ID from.')
    args = parser.parse_args()

    mzml = Reader(args.mzml_file)
    id = mzml.info['run_id']

    if id is not None:
        with open("sample_name.txt", mode='x') as f:
            f.write(id)


if __name__ == '__main__':
    main(sys.argv[1:])