Skip to content

Commit

Permalink
Update pychip.py
Browse files Browse the repository at this point in the history
  • Loading branch information
sbslee committed Mar 31, 2023
1 parent c110451 commit 79f4c55
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions fuc/api/pychip.py
Original file line number Diff line number Diff line change
Expand Up @@ -84,9 +84,9 @@ def to_vep(self):
pandas.DataFrame
Variants in Ensembl VEP format.
"""
print(self.df.shape)
df = self.df[self.df.Chromosome != '---']
print(df.shape)
df['Physical Position'] = df['Physical Position'].astype(int)
df['Position End'] = df['Position End'].astype(int)
def one_row(r):
result = []
nucleotides = ['A', 'C', 'G', 'T']
Expand Down

0 comments on commit 79f4c55

Please sign in to comment.