Skip to content

Commit

Permalink
fix: update psp indexing (#4)
Browse files Browse the repository at this point in the history
  • Loading branch information
balajtimate committed Oct 13, 2023
1 parent a88e1c7 commit f68b124
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions scRNAsim_toolz/priming_site_predictor/psp.py
Original file line number Diff line number Diff line change
Expand Up @@ -103,11 +103,11 @@ def generate_gtf(self):

for index in interaction_df.index:
result += (
str(interaction_df[3][index])
str(interaction_df.iloc[:, 3][index])
+ '\tRIBlast\tPriming_site\t'
+ str(interaction_df[13][index])
+ str(interaction_df.iloc[:, 13][index])
+ '\t'
+ str(interaction_df[12][index])
+ str(interaction_df.iloc[:, 12][index])
+ '\t.\t+\t.\t'
+ 'Interaction_Energy' + '\t'
+ str(interaction_df[
Expand Down

0 comments on commit f68b124

Please sign in to comment.