Skip to content

Commit

Permalink
fix: don't use deprecated columns param
Browse files Browse the repository at this point in the history
  • Loading branch information
jsstevenson committed Jun 12, 2024
1 parent 4d665fa commit 6d055ed
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/cool_seq_tool/mappers/mane_transcript.py
Original file line number Diff line number Diff line change
Expand Up @@ -550,7 +550,7 @@ def _get_prioritized_transcripts_from_gene(self, df: pl.DataFrame) -> List:
most recent version of a transcript associated with an assembly will be kept
"""
copy_df = df.clone()
copy_df = copy_df.drop(columns="alt_ac").unique()
copy_df = copy_df.drop("alt_ac").unique()
copy_df = copy_df.with_columns(
[
pl.col("tx_ac")
Expand Down

0 comments on commit 6d055ed

Please sign in to comment.