Skip to content

Commit

Permalink
Debug missing replicate from tracer plot
Browse files Browse the repository at this point in the history
  • Loading branch information
Alex Chao authored and alexchao32 committed May 23, 2024
1 parent 657f142 commit b30081a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/ms1/WebApp_plotter.py
Original file line number Diff line number Diff line change
Expand Up @@ -537,7 +537,7 @@ def make_seq_scatter(
# Sort dataframe columns alphabetically prior to parsing headers
df_in = df_in.reindex(sorted(df_in.columns), axis=1) # Remove sorting to
df_in = df_in[
["Mass"] + [col for col in df_in.columns if col != "Mass"]
["Feature_ID"] + [col for col in df_in.columns if col != "Feature_ID"]
] # Move mass column to front of dataframe; if a sample replicate is the first column when parsing headers it loses that replicate from the group

# Debug_list
Expand Down

0 comments on commit b30081a

Please sign in to comment.