Skip to content

Commit

Permalink
fixed error due to too many characters in a line
Browse files Browse the repository at this point in the history
  • Loading branch information
mattcai committed Apr 17, 2020
1 parent 0522231 commit 0d30b88
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion starfish/core/spots/DecodeSpots/trace_builders.py
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,8 @@ def build_traces_sequential(spot_results: SpotFindingResults, **kwargs) -> Inten
"""

all_spots = pd.concat([sa.spot_attrs.data for sa in spot_results.values()], ignore_index=True, sort=True)
all_spots = pd.concat([sa.spot_attrs.data for sa in spot_results.values()],
ignore_index=True, sort=True)
# reassign spot_ids to index number so they are unique
all_spots['spot_id'] = all_spots.index

Expand Down

0 comments on commit 0d30b88

Please sign in to comment.