Currently shapelets has two custom entry points
shapelets config # to run an analysis defined in config
shapelets-test # to run unit tests
From a user's perspective, it would be easier to consume these entry points if there was a standardized format. It would also be better to support the configuration file location as a path-type parameter,
shapelets config -> shapelets-run /path/to/config
where /path/to/config introduces support for relative and absolute paths. Note you could use argparse...
Currently shapelets has two custom entry points
From a user's perspective, it would be easier to consume these entry points if there was a standardized format. It would also be better to support the configuration file location as a path-type parameter,
where /path/to/config introduces support for relative and absolute paths. Note you could use
argparse...