https://github.com/ctlab/phantasus
Revision 1f6ce2270fff92c30caf7022532c6f9416d00c43 authored by clevermx on 19 October 2021, 09:14:04 UTC, committed by clevermx on 19 October 2021, 09:14:04 UTC
	fix loadGEO test with corresponding to new layout
	add otherOptions of convertByAnnotationDB in documentation
1 parent bf29923
Raw File
Tip revision: 1f6ce2270fff92c30caf7022532c6f9416d00c43 authored by clevermx on 19 October 2021, 09:14:04 UTC
fixes pass tests:
Tip revision: 1f6ce22
reproduceInR.Rd
% Generated by roxygen2: do not edit by hand
% Please edit documentation in R/reproduceInR.R
\name{reproduceInR}
\alias{reproduceInR}
\title{Reproduce session in R code}
\usage{
reproduceInR(sessionName, leaf = T, step = 0, savedEnv = new.env())
}
\arguments{
\item{sessionName}{String, OCPU session name}

\item{leaf}{Boolean, is it leaf (default = F)}

\item{step}{Integer, step of recursion (default = 0)}

\item{savedEnv}{Environment, where to store complex arguments (default = new.env())}
}
\value{
JSON with R code
}
\description{
Reproduce session in R code
}
\examples{
\dontrun{
  setwd(tempdir())
  reproduceInR('x039f1672026678');
}
}
back to top