automate is a command-line interface toolbox allowing to:
- Do fast data treatment (pre/post processing)
- Parse template files based on .csv matrices
This software essentially consists in using functions from Pandas (https://pandas.pydata.org/) library in command line.
- python libraries:
pandas
,numpy
Scripts can be used separately, but they also can be used in chain inside a bash script. For instance, the following script allows to treat .csv files from Gomboc saved inside /results folder:
automate filter results/* # Removes headers you don't need
automate average filtered_res/* # Returns an averaged dataframe and save them inside average_res/
automate concat average_res/* --matrix matrix.csv