Skip to content

Commit

Permalink
fix bug
Browse files Browse the repository at this point in the history
  • Loading branch information
bedroesb committed Jan 3, 2025
1 parent b58e4db commit 6cb8f1a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ena_upload/templates/ENA_template_experiments.xml
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ def mandatorytest(row, column, index):
</py:if>
<py:if test="mandatorytest(row, 'library_layout', index)">
<LIBRARY_LAYOUT py:choose="">
<PAIRED py:when="row.library_layout.lower().strip() == 'paired'" NOMINAL_LENGTH="${row.insert_size}" />
<PAIRED py:when="row.library_layout.lower().strip() == 'paired'" NOMINAL_LENGTH="${int(row.insert_size)}" />
<SINGLE py:when="row.library_layout.lower().strip() == 'single'" />
</LIBRARY_LAYOUT>
</py:if>
Expand Down

0 comments on commit 6cb8f1a

Please sign in to comment.