Skip to content

Commit

Permalink
feat(_test_transcription_dynamics): Adapted test to include latent di…
Browse files Browse the repository at this point in the history
…screte parameter for gene state.

Signed-off-by: Alexander Aivazidis <[email protected]>
  • Loading branch information
AlexanderAivazidis committed Jul 26, 2024
1 parent 1e096dd commit 54cb35c
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/pyrovelocity/tests/models/test_transcription_dynamics.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,9 +17,10 @@ def test_get_cell_parameters():
dt_3 = torch.tensor((50.0, 70.0))
alpha = torch.tensor((0.5, 0.3))
alpha_off = torch.tensor(0.0)
k = torch.tensor((1.0, 1.0),(1.0,1.0))

output = get_cell_parameters(
t, t0_1, dt_1, dt_2, dt_3, alpha, alpha_off
t, t0_1, dt_1, dt_2, dt_3, alpha, alpha_off,k
)

correct_output = (torch.tensor([[0, 0],
Expand Down

0 comments on commit 54cb35c

Please sign in to comment.