annotate transform_json_to_pkl.py @ 2:ebb74774457e draft default tip

"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/metaphlan2/ commit bfc25b2695b9689c60101f84162610194a33c886"
author iuc
date Fri, 19 Mar 2021 21:39:11 +0000
parents fdbd63e92b01
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
0
fdbd63e92b01 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/metaphlan2/ commit 345fb7ef485456ae833be5ad2d2ce4f8765652c8
iuc
parents:
diff changeset
1 #!/usr/bin/env python
fdbd63e92b01 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/metaphlan2/ commit 345fb7ef485456ae833be5ad2d2ce4f8765652c8
iuc
parents:
diff changeset
2 # -*- coding: utf-8 -*-
fdbd63e92b01 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/metaphlan2/ commit 345fb7ef485456ae833be5ad2d2ce4f8765652c8
iuc
parents:
diff changeset
3
fdbd63e92b01 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/metaphlan2/ commit 345fb7ef485456ae833be5ad2d2ce4f8765652c8
iuc
parents:
diff changeset
4 import argparse
fdbd63e92b01 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/metaphlan2/ commit 345fb7ef485456ae833be5ad2d2ce4f8765652c8
iuc
parents:
diff changeset
5 import bz2
fdbd63e92b01 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/metaphlan2/ commit 345fb7ef485456ae833be5ad2d2ce4f8765652c8
iuc
parents:
diff changeset
6 import cPickle as pickle
fdbd63e92b01 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/metaphlan2/ commit 345fb7ef485456ae833be5ad2d2ce4f8765652c8
iuc
parents:
diff changeset
7 import json
fdbd63e92b01 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/metaphlan2/ commit 345fb7ef485456ae833be5ad2d2ce4f8765652c8
iuc
parents:
diff changeset
8
fdbd63e92b01 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/metaphlan2/ commit 345fb7ef485456ae833be5ad2d2ce4f8765652c8
iuc
parents:
diff changeset
9
fdbd63e92b01 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/metaphlan2/ commit 345fb7ef485456ae833be5ad2d2ce4f8765652c8
iuc
parents:
diff changeset
10 def transform_json_to_pkl(args):
fdbd63e92b01 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/metaphlan2/ commit 345fb7ef485456ae833be5ad2d2ce4f8765652c8
iuc
parents:
diff changeset
11 with open(args.json_input, 'r') as json_file:
fdbd63e92b01 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/metaphlan2/ commit 345fb7ef485456ae833be5ad2d2ce4f8765652c8
iuc
parents:
diff changeset
12 json_str = json_file.read()
fdbd63e92b01 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/metaphlan2/ commit 345fb7ef485456ae833be5ad2d2ce4f8765652c8
iuc
parents:
diff changeset
13 metadata = json.loads(json_str)
fdbd63e92b01 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/metaphlan2/ commit 345fb7ef485456ae833be5ad2d2ce4f8765652c8
iuc
parents:
diff changeset
14
fdbd63e92b01 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/metaphlan2/ commit 345fb7ef485456ae833be5ad2d2ce4f8765652c8
iuc
parents:
diff changeset
15 for marker in metadata["markers"]:
fdbd63e92b01 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/metaphlan2/ commit 345fb7ef485456ae833be5ad2d2ce4f8765652c8
iuc
parents:
diff changeset
16 a_set = set(metadata["markers"][marker]["ext"])
fdbd63e92b01 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/metaphlan2/ commit 345fb7ef485456ae833be5ad2d2ce4f8765652c8
iuc
parents:
diff changeset
17 metadata["markers"][marker]["ext"] = a_set
fdbd63e92b01 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/metaphlan2/ commit 345fb7ef485456ae833be5ad2d2ce4f8765652c8
iuc
parents:
diff changeset
18
fdbd63e92b01 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/metaphlan2/ commit 345fb7ef485456ae833be5ad2d2ce4f8765652c8
iuc
parents:
diff changeset
19 pkl_output = bz2.BZ2File(args.pkl_output, 'w')
fdbd63e92b01 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/metaphlan2/ commit 345fb7ef485456ae833be5ad2d2ce4f8765652c8
iuc
parents:
diff changeset
20 pickle.dump(metadata, pkl_output, pickle.HIGHEST_PROTOCOL)
fdbd63e92b01 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/metaphlan2/ commit 345fb7ef485456ae833be5ad2d2ce4f8765652c8
iuc
parents:
diff changeset
21 pkl_output.close()
fdbd63e92b01 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/metaphlan2/ commit 345fb7ef485456ae833be5ad2d2ce4f8765652c8
iuc
parents:
diff changeset
22
fdbd63e92b01 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/metaphlan2/ commit 345fb7ef485456ae833be5ad2d2ce4f8765652c8
iuc
parents:
diff changeset
23
fdbd63e92b01 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/metaphlan2/ commit 345fb7ef485456ae833be5ad2d2ce4f8765652c8
iuc
parents:
diff changeset
24 if __name__ == '__main__':
fdbd63e92b01 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/metaphlan2/ commit 345fb7ef485456ae833be5ad2d2ce4f8765652c8
iuc
parents:
diff changeset
25 parser = argparse.ArgumentParser()
fdbd63e92b01 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/metaphlan2/ commit 345fb7ef485456ae833be5ad2d2ce4f8765652c8
iuc
parents:
diff changeset
26 parser.add_argument('--json_input', required=True)
fdbd63e92b01 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/metaphlan2/ commit 345fb7ef485456ae833be5ad2d2ce4f8765652c8
iuc
parents:
diff changeset
27 parser.add_argument('--pkl_output', required=True)
fdbd63e92b01 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/metaphlan2/ commit 345fb7ef485456ae833be5ad2d2ce4f8765652c8
iuc
parents:
diff changeset
28 args = parser.parse_args()
fdbd63e92b01 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/metaphlan2/ commit 345fb7ef485456ae833be5ad2d2ce4f8765652c8
iuc
parents:
diff changeset
29
fdbd63e92b01 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/metaphlan2/ commit 345fb7ef485456ae833be5ad2d2ce4f8765652c8
iuc
parents:
diff changeset
30 transform_json_to_pkl(args)