Mercurial > repos > bgruening > sklearn_clf_metrics
comparison clf_metrics.xml @ 27:a0635108f6ec draft
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/sklearn commit 60f0fbc0eafd7c11bc60fb6c77f2937782efd8a9-dirty
author | bgruening |
---|---|
date | Fri, 09 Aug 2019 06:32:19 -0400 |
parents | 4e0b0a6a89a6 |
children | e801d2034575 |
comparison
equal
deleted
inserted
replaced
26:c11c91e9591e | 27:a0635108f6ec |
---|---|
19 import json | 19 import json |
20 import pandas | 20 import pandas |
21 import numpy as np | 21 import numpy as np |
22 import sys | 22 import sys |
23 from sklearn import metrics | 23 from sklearn import metrics |
24 | 24 from galaxy_ml.utils import read_columns |
25 sys.path.insert(0, '$__tool_directory__') | 25 |
26 from utils import read_columns | |
27 | 26 |
28 input_json_path = sys.argv[1] | 27 input_json_path = sys.argv[1] |
29 with open(input_json_path, "r") as param_handler: | 28 with open(input_json_path, "r") as param_handler: |
30 params = json.load(param_handler) | 29 params = json.load(param_handler) |
31 | 30 |