layout | title | date | categories |
---|---|---|---|
post |
Special Job |
2016-01-18 14:14:38 -0500 |
GRAPLEr |
The function allows user to submit an experiment to a GRAPLEr service running on endpoint graplerURL. The input files should be placed in ExperimentRootDir.
{: .text-justify}If a filtername is not provided, the archive contents should be similar to the below figure:
{: .center-image }
Example:
{% highlight ruby %} graplerURL<-“http://graple-service.cloudapp.net” simDir="C:/Workspace/SimRoot/Exp5" JobFileName="sweepexp.tar.gz" setwd(simDir) expId5 <- GrapleRunExperimentJob(graplerURL, simDir, JobFileName) {% endhighlight %}
If a filtername is provided, the archive contents should be similar to the below figure:
{: .center-image }
Example:
{% highlight ruby %} graplerURL<-“http://graple-service.cloudapp.net” simDir="c:/Workspace/SimRoot/Exp6" JobFileName="sweepexp.tar.gz" filterName = "Filter1.R" setwd(simDir) expId6 <- GrapleRunExperimentJob(graplerURL, simDir, JobFileName) {% endhighlight %}
However, if a filtername is provided and experiment root directory does not have a “FilterParams” file, then it is expected that the filtername chosen has the parameters required and it will be used as a filter directly.
{: .text-justify}