Skip to content

Commit

Permalink
Fixing FutureWarning zellerlab#2
Browse files Browse the repository at this point in the history
  • Loading branch information
karchern committed Oct 9, 2024
1 parent 8f601d4 commit 7ba1988
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cayman/annotate/crazy_annotator.py
Original file line number Diff line number Diff line change
Expand Up @@ -163,7 +163,7 @@ def curate_annotations(self, precomputed_hmm_cutoffs):
print("Merging annotations...")
self.annotations_filtered = pd.concat(list(annotations_with_fold_counts_series.apply(CazyAnnotator.merge_annots)))

tmp2 = self.annotations_filtered.groupby(["sequenceID"])
tmp2 = self.annotations_filtered.groupby("sequenceID")
aSeries = []
names = []
for name, group in tmp2:
Expand Down

0 comments on commit 7ba1988

Please sign in to comment.