Skip to content

A Python package providing the code for Automated Electrochemical Analysis (aElChA)

License

Notifications You must be signed in to change notification settings

LukasGold/aelcha-package

Repository files navigation

PyPI-Server Project generated with PyScaffold

aElChA

A Python package providing the code for Automated Electrochemical Analysis (aElChA)

A longer description of your project goes here...

Installation

pip install aelcha

Usage

Excel as User Interface

  • 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

Python as User Interface

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)

Note

This project has been set up using PyScaffold 4.5. For details and usage information on PyScaffold see https://pyscaffold.org/.

About

A Python package providing the code for Automated Electrochemical Analysis (aElChA)

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages