Skip to content

Commit

Permalink
Merge pull request #127 from MiraldiLab/ANRudrapatna-patch-2
Browse files Browse the repository at this point in the history
Update prediction_tools.py
  • Loading branch information
ANRudrapatna committed Feb 1, 2024
2 parents 8ba14a4 + eeb4e42 commit 5f50fab
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions maxatac/utilities/prediction_tools.py
Original file line number Diff line number Diff line change
Expand Up @@ -316,9 +316,9 @@ def __get_region_values__(self, roi_pool):
# Get the matric of values for the entry
input_matrix = get_input_matrix(signal_stream=signal_stream,
sequence_stream=sequence_stream,
chromosome=row[0],
start=int(row[1]),
end=int(row[2]),
chromosome=row.iloc[0],
start=int(row.iloc[1]),
end=int(row.iloc[2]),
use_complement=self.use_complement,
reverse_matrix=self.use_complement)

Expand Down

0 comments on commit 5f50fab

Please sign in to comment.