Skip to content

Commit

Permalink
Make suggested changes
Browse files Browse the repository at this point in the history
  • Loading branch information
EmilyTLin committed May 21, 2024
1 parent 4426f08 commit aaa0f09
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 24 deletions.
4 changes: 2 additions & 2 deletions bicytok/MBmodel.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,13 +11,13 @@ def getKxStar():


def cytBindingModel(
recCount: np.ndarray, recXaffs: np.ndarray, dose: float, vals: list
recCount: np.ndarray, recXaffs: np.ndarray, dose: float, vals: np.ndarray
):
"""Runs binding model for a given mutein, valency, dose, and cell type."""
# Check that values are in correct placement, can invert
Kx = getKxStar()
ligandConc = dose / (vals[0] * 1e9)

output = polyc(ligandConc, Kx, recCount, np.array([vals]), recXaffs)[0]
output = polyc(ligandConc, Kx, recCount, vals, recXaffs)[0]

return output
22 changes: 0 additions & 22 deletions junit.xml

This file was deleted.

0 comments on commit aaa0f09

Please sign in to comment.