Mercurial > repos > bgruening > sklearn_regression_metrics
comparison regression_metrics.xml @ 19:3cc8a461bc5d 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:31:16 -0400 |
| parents | 25b74e5f42f4 |
| children | 95a37d463eac |
comparison
equal
deleted
inserted
replaced
| 18:50bc79ab2eae | 19:3cc8a461bc5d |
|---|---|
| 17 <![CDATA[ | 17 <![CDATA[ |
| 18 import sys | 18 import sys |
| 19 import json | 19 import json |
| 20 import pandas | 20 import pandas |
| 21 import numpy as np | 21 import numpy as np |
| 22 | |
| 22 from sklearn import metrics | 23 from sklearn import metrics |
| 23 | 24 from galaxy_ml.utils import read_columns |
| 24 sys.path.insert(0, '$__tool_directory__') | 25 |
| 25 from utils import read_columns | |
| 26 | 26 |
| 27 input_json_path = sys.argv[1] | 27 input_json_path = sys.argv[1] |
| 28 with open(input_json_path, "r") as param_handler: | 28 with open(input_json_path, "r") as param_handler: |
| 29 params = json.load(param_handler) | 29 params = json.load(param_handler) |
| 30 | 30 |
