Skip to content

Commit

Permalink
Remove sort option
Browse files Browse the repository at this point in the history
  • Loading branch information
alexomics committed Jul 18, 2018
1 parent fb4f629 commit b510eb1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion main.py
Original file line number Diff line number Diff line change
Expand Up @@ -231,7 +231,7 @@ def update_data(bulkfile, app_vars):
state_label_df = state_label_df.rename(
columns={'acquisition_raw_index': 'read_start', 'summary_state': 'modal_classification'}
)
app_data['label_df'] = app_data['label_df'].append(state_label_df, ignore_index=True, sort=True)
app_data['label_df'] = app_data['label_df'].append(state_label_df, ignore_index=True)
app_data['label_df'].sort_values(by='read_start', ascending=True, inplace=True)
app_data['label_dt'].update(state_label_dtypes)

Expand Down

0 comments on commit b510eb1

Please sign in to comment.