Skip to content

Commit

Permalink
fixed input of print_data* functions 2.
Browse files Browse the repository at this point in the history
  • Loading branch information
tinavisnovska committed Feb 7, 2024
1 parent b49b94f commit 04f490b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions samplesheet_generator.py
Original file line number Diff line number Diff line change
Expand Up @@ -401,12 +401,12 @@ def print_data_section_v1(run_id, dual_indexes, index_length, indexes, input_inf
if dual_indexes:
info = create_info_dictionary_from_input_df_dual_indexes(info_df, run_id, indexes)

print_data_section_dual_indexes_v1(info, sample_id)
print_data_section_dual_indexes_v1(info)

else:
info = create_info_dictionary_from_input_df_simple_indexes(info_df, run_id, indexes)

print_data_section_simple_indexes_v1(info, sample_id)
print_data_section_simple_indexes_v1(info)



Expand Down

0 comments on commit 04f490b

Please sign in to comment.