Skip to content

Commit

Permalink
Fix getting 'Dx Exoomequivalent' from sample.udf
Browse files Browse the repository at this point in the history
  • Loading branch information
rernst committed Jul 18, 2022
1 parent ca0b96c commit c87f975
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion clarity_epp/export/manual_pipetting.py
Original file line number Diff line number Diff line change
Expand Up @@ -644,7 +644,7 @@ def samplesheet_pool_samples(lims, process_id, output_file):
input_sample = input_artifact.samples[0] # Asume one sample

if 'Dx Exoomequivalent' in input_sample.udf:
volume = 5 * input_sample['Dx Exoomequivalent']
volume = 5 * input_sample.udf['Dx Exoomequivalent']
else:
volume = 5

Expand Down

0 comments on commit c87f975

Please sign in to comment.