You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This requires users to maintain a folder explicitly in their home directory, which may not be possible when using shared resources for example.
It would be much easier for users and for Dockerizing if these trajectory converters can simply be loaded as a library:
library(monocle)
library(traj-converters)
...
The Dockerfile will then also be also be modified to add:
RUN R -e 'install.packages(c("devtools"))
devtools::install_github('Stuartlab-UCSC/traj-converters')
Many resources including Hadley's guide for making R packages are available to help you make these conversion functions available as a part of a traj-converters package.
The text was updated successfully, but these errors were encountered:
Please note that the usage of sourcedoes not require users to maintain a folder explicitly in their home directory. You may clone traj-converters to any/directory and then source("any/directory/traj-converters/src/R/monocle_convert.r") from R. In the case of monocle-docker /home is where the traj-converters directory is copied inside the container.
Dependencies such as
monocle-docker
currently source files from this repo as seen here:This requires users to maintain a folder explicitly in their home directory, which may not be possible when using shared resources for example.
It would be much easier for users and for Dockerizing if these trajectory converters can simply be loaded as a library:
The Dockerfile will then also be also be modified to add:
Many resources including Hadley's guide for making R packages are available to help you make these conversion functions available as a part of a
traj-converters
package.The text was updated successfully, but these errors were encountered: