MarcAntoineFabre / metrumrg

Automatically exported from code.google.com/p/metrumrg
0 stars 0 forks source link

could use function to discover NONMEM executable #3

Closed GoogleCodeExporter closed 8 years ago

GoogleCodeExporter commented 8 years ago
Paths like "/opt/NONMEM/nm72gf/nmqual/autolog.pl" can be hard to discover.  
Could be useful to have a function that returns the possibilities.
findNonmemCommand <- 
function(under='/opt/NONMEM',executable='autolog.pl',...)dir(
   under,
   pattern=glue(executable,'$'),
   full.names=TRUE,
   recursive=TRUE
)

Original issue reported on code.google.com by bergs...@gmail.com on 22 Mar 2012 at 1:09

GoogleCodeExporter commented 8 years ago
forgot to pass ... to dir()

Original comment by bergs...@gmail.com on 22 Mar 2012 at 1:13

GoogleCodeExporter commented 8 years ago
will be available @rev63, ver 3.15

Original comment by bergs...@gmail.com on 22 Mar 2012 at 2:02