Skip to content

Commit

Permalink
Remove hellno dependency
Browse files Browse the repository at this point in the history
  • Loading branch information
burgerga committed Jan 12, 2021
1 parent f9284bf commit 5dc5ad1
Show file tree
Hide file tree
Showing 3 changed files with 1 addition and 4 deletions.
1 change: 0 additions & 1 deletion DESCRIPTION
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,6 @@ Description: 'MTrackJ' is an 'ImageJ' plugin for motion tracking and analysis (s
License: GPL-3 | file LICENSE
LazyData: TRUE
Depends: R (>= 2.10)
Imports: hellno
URL: https://github.com/burgerga/mdftracks
BugReports: https://github.com/burgerga/mdftracks/issues
Roxygen: list(markdown = TRUE)
Expand Down
1 change: 0 additions & 1 deletion NAMESPACE
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,5 @@

export(read.mdf)
export(write.mdf)
import(hellno)
importFrom(utils,capture.output)
importFrom(utils,read.delim)
3 changes: 1 addition & 2 deletions R/mdftracks.R
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,6 @@
#' @docType package
#' @name mdftracks
#' @seealso [MTrackJ Data Format](https://imagescience.org/meijering/software/mtrackj/format/)
#' @import hellno
NULL


Expand Down Expand Up @@ -293,7 +292,7 @@ getClusterTracks <- function(cluster.lines) {
}))
# Bind list together to get the DF, then convert to data matrix (make numeric),
# then back to DF
as.data.frame(data.matrix(do.call(rbind, track.df.l)))
as.data.frame(data.matrix(do.call(rbind, track.df.l)), stringsAsFactors = F)
}


Expand Down

0 comments on commit 5dc5ad1

Please sign in to comment.