Skip to content

Commit

Permalink
Debugging
Browse files Browse the repository at this point in the history
  • Loading branch information
lauraluebbert committed May 25, 2024
1 parent 7de31ce commit ec44846
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion gget/gget_cosmic.py
Original file line number Diff line number Diff line change
Expand Up @@ -296,7 +296,7 @@ def cosmic(
)

# Remove version numbers from Ensembl IDs
df["seq_ID"] = df["seq_ID"].str.split(".")[0]
df["seq_ID"] = df["seq_ID"].str.split(".").str[0]

# Get mut_ID column (by combining GENOMIC_MUTATION_ID and MUTATION_URL/MUTATION_ID)
df["GENOMIC_MUTATION_ID"] = df["GENOMIC_MUTATION_ID"].fillna("NA")
Expand Down

0 comments on commit ec44846

Please sign in to comment.