|
|
@ -3,7 +3,7 @@ |
|
|
|
Parsing the numerical output from Sensovations Sensospot image analysis. |
|
|
|
Parsing the numerical output from Sensovations Sensospot image analysis. |
|
|
|
""" |
|
|
|
""" |
|
|
|
|
|
|
|
|
|
|
|
__version__ = "1.0.0" |
|
|
|
__version__ = "1.0.1" |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
import pathlib |
|
|
|
import pathlib |
|
|
@ -51,7 +51,7 @@ def main(sources, output, quiet=False): |
|
|
|
|
|
|
|
|
|
|
|
""" |
|
|
|
""" |
|
|
|
paths = (pathlib.Path(source) for source in sources) |
|
|
|
paths = (pathlib.Path(source) for source in sources) |
|
|
|
collection = (parse_folder(source) for source in paths) |
|
|
|
collection = (parse_folder(source, quiet) for source in paths) |
|
|
|
result = pandas.concat(collection, ignore_index=True).to_csv( |
|
|
|
result = pandas.concat(collection, ignore_index=True).to_csv( |
|
|
|
output, sep="\t", index=False |
|
|
|
output, sep="\t", index=False |
|
|
|
) |
|
|
|
) |
|
|
|