ggPMX
ggPMX copied to clipboard
Assess possibility to handle version control when reading mlxtran file
For example, mltran file is stored on path: "/home/demo/2.2.censored_data/censoring1_project.mlxtra"
Current call:
mlxtran_path = "/home/demo/2.2.censored_data/censoring1_project.mlxtra"
ctr <- pmx_mlxtran(file_name = mlxtran_path)
We could add parameters: "major_version" and "minor_version"
Call will look like:
path <- "/home/agstudy/Downloads/*censored_data/censoring1_project.mlxtra"
ctr <- pmx_mlxtran(file_name = mlxtran_path,minor_version =2, major_version =2)
New params will not be obligatory, we still could use the current format.
Not sure this addresses the issue. The point is not about first the part in the name "2.2.censored_data", it's about accessing different versions of the file .mlxtran. To be further discussed.
Agreed.