We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5c64bd5 commit fe27535Copy full SHA for fe27535
1 file changed
src/methods_transcript_assignment/pciseq/script.py
@@ -123,9 +123,9 @@ def eta_update_no_assert(self):
123
124
# There might be spots at the border of the image, pciseq runs into an error if this is the case
125
transcripts_at_border = transcripts_dataframe['x'] > (label_image.shape[1]-0.5)
126
-transcripts_dataframe = transcripts_dataframe.loc[transcripts_at_border]
+transcripts_dataframe = transcripts_dataframe.loc[~transcripts_at_border]
127
transcripts_at_border = transcripts_dataframe['y'] > (label_image.shape[0]-0.5)
128
129
130
# Grab all the pciSeq parameters
131
opts_keys = [#'exclude_genes',
0 commit comments