A Python package providing the code for Automated Electrochemical Analysis (aElChA)
A longer description of your project goes here...
pip install aelcha
- Open the File_Selection.xlsx from the examples folder
- Enter the files you like to process in the first sheet "Selection"
- Enter the parameters for the analysis
- General parameters in the second sheet "Configuration"
- File specific parameters in the first sheet "Selection"
- Run the script
python <path_to_repository>/examples/script.py
from aelcha.core import process_file
from aelcha.user_interface import SelectionRow, Configuration
from aelcha.common import MaccorPreprocessingOption
config = Configuration(
input_dir_default='path/to/input',
export_dir_default='path/to/output',
input_source_type=MaccorPreprocessingOption.mims_client1
)
row = SelectionRow(
index=0,
file_name='file_name.txt',
sample_name='sample_name',
)
process_file(row, config)
This project has been set up using PyScaffold 4.5. For details and usage information on PyScaffold see https://pyscaffold.org/.