Skip to content

Commit

Permalink
fix SequenceView backend
Browse files Browse the repository at this point in the history
  • Loading branch information
t0mdavid-m committed May 9, 2024
1 parent 24c236b commit 85b5bf6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pages/FLASHDeconvViewer.py
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ def sendDataToJS(selected_data, layout_info_per_exp, grid_key='flash_viewer_grid

# if Internal fragment map was selected, but sequence view was not
if ('internal_fragment_data' in data_to_send) and ('sequence_data' not in data_to_send):
data_to_send['sequence_data'] = getFragmentDataFromSeq(st.session_state.input_sequence)
data_to_send['sequence_data'] = {0 : getFragmentDataFromSeq(st.session_state.input_sequence)}

flash_viewer_grid_component(components=components, data=data_to_send, component_key=grid_key)

Expand Down

0 comments on commit 85b5bf6

Please sign in to comment.