Addition Information for Python insiders
This additional information on the class and its functions and not needed if you completed the previous step in the tutorial.
Step-by-step Python tutorial
from process_mrxs_data import ProcessMRXSDatamrxs_directory = "path/to/your/mrxs_files"
inventory_file = "path/to/your/inventory.csv"
output_path = "path/to/your/directory/to/outputs"
output_extension="xlsx/csv"
#(should choose one of the extension)
processor = ProcessMRXSData.process_directory(mrxs_directory, inventory_file, output_path, output_extension)#Remember to define the output_filename as ENV
# EXPORT output_filename="whatever/name"
rate = ProcessMRXSData.process_rate(output_path, output_filename)
for file in rate:
ProcessMRXSData.process_heatmaps(rate)
ProcessMRXSData.process_scatterplots(rate)Example of workflow_template script:
Just in case:
Last updated