Skip to content

Commit

Permalink
added lines for TrackMate data conversion
Browse files Browse the repository at this point in the history
  • Loading branch information
SasLeo committed Nov 26, 2021
1 parent 5ace14e commit e66e519
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions pythonr/run_hdf5.R
Original file line number Diff line number Diff line change
Expand Up @@ -72,6 +72,11 @@ run_fun <- function(
pts <- datah5$data[, c(datacol[1], datacol[2])]
sds <- datah5$data[, datacol[3]]

if (micro_meter == TRUE){
pts <- pts/1000
sds <- sds/1000
}

xlim <- c(min(pts[, 1]), max(pts[, 1]))
ylim <- c(min(pts[, 2]), max(pts[, 2]))

Expand Down

0 comments on commit e66e519

Please sign in to comment.