Skip to content

Commit

Permalink
update
Browse files Browse the repository at this point in the history
  • Loading branch information
Xiaojieqiu committed Aug 31, 2020
1 parent 9559ba4 commit 9a4ed0f
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
8 changes: 4 additions & 4 deletions dynamo/tools/dynamics.py
Original file line number Diff line number Diff line change
Expand Up @@ -442,12 +442,12 @@ def dynamics(
vel_U = vel.vel_u(U_) if has_splicing else np.nan
vel_S = vel.vel_s(U_, S_) if has_splicing else np.nan
vel_N = vel.vel_u(U)
vel_T = vel.vel_u(S) # S - U?
vel_T = vel.vel_u(S) # don't consider splicing
else:
vel_U = vel.vel_u(U) if has_splicing else np.nan
vel_S = vel.vel_s(U, S) if has_splicing else np.nan
vel_N = vel.vel_u(U_)
vel_T = vel.vel_s(U_, S_)
vel_T = vel.vel_u(S_) # don't consider splicing
else:
vel_U = vel.vel_u(U)
vel_S = vel.vel_s(U, S)
Expand Down Expand Up @@ -545,12 +545,12 @@ def dynamics(
vel_U = vel.vel_u(U_) if has_splicing else np.nan
vel_S = vel.vel_s(U_, S_) if has_splicing else np.nan
vel_N = vel.vel_u(U)
vel_T = vel.vel_u(S - U) # S - U?
vel_T = vel.vel_u(S) # don't consider splicing
else:
vel_U = vel.vel_u(U) if has_splicing else np.nan
vel_S = vel.vel_s(U, S) if has_splicing else np.nan
vel_N = vel.vel_u(U_)
vel_T = vel.vel_s(U_, S_)
vel_T = vel.vel_u(S_) # don't consider splicing

vel_P = vel.vel_p(S, P)

Expand Down
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ pandas>=0.25.1
scipy>=1.0
scikit-learn>=0.19.1
cvxopt>=1.2.3
anndata>=0.7.1
anndata>=0.7.4
loompy>=3.0.5
matplotlib>=3.1.0
trimap>=1.0.11
Expand Down

0 comments on commit 9a4ed0f

Please sign in to comment.