\name{fitgene} \alias{fitgene} \title{Fits the optimal kinetic parameter values for a particular gene.} \description{ This method fits the three kinetic parameter values for a particular gene. It returns a list containing the results. } \usage{ fitgene(eset,gene,tHVDM,transforms,firstguess,criterion) } \arguments{ \item{eset}{ an ExpressionSet object (Biobase) } \item{gene}{ the gene identifier in character format } \item{transforms}{ a vector containing the kinetic parameter identifiers that have to be transformed during optimisation (optional) } \item{tHVDM}{ the output of the training set } \item{firstguess}{ first guess for the fitting (optional, see details)} \item{criterion}{ model selection in the nonlinear case } } \details{ An exponential transform is set by default for both the basal (Bj), degradation (Dj) rates (through the transforms argument) and possibly Kj (in case a nonlinear model is used). This forces the values for both these parameters to be positive. It also helps to reach a better fit. To turn this off let transforsm=c(). Even in this case the degradation rate will not be allowed to take non positive values as it causes problems with the differential operator used internally. The value in the vector indicates the parameter to be transformed: "Bj": basal rate of transcription, "Sj": sensitivity, "Dj": degrdation rate. The entry label indicates the transform to be applied; presently, only log-tranforms are implemented (ie "exp"). This \code{fitgene()} step can only be applied after a \code{training()} step. The output to the \code{training()} step has to be fed through the \code{tHVDM} argument. The \code{firstguess} argument is optional (a first guess is generated internally by default). However a first guess can be supplied by the user which can take several forms. It can either be a vector with three entries containing a first guess for the basal rate, the sensitivity, the degradation rate (in that order). Alternatively, another output from the \code{fitgene()} function (for example from a gene that has a similar expression profile) can be supplied as a \code{firstguess} argument. The \code{criterion} argument is only used if the training object fed through the tHVDM command is a non-linear fit and determines the type of criterion used for model selection between Michelis-Menten and Hill. Possible values fed throught this argument are "BIC" (Bayesian information criterion, default) and "AIC" (Akaike information critertion). This argument is ignored in case of linear fitting. } \value{ a list containing the results (see documentation for more details). } \references{ M. Barenco, D. Tomescu, D. Brewer, R. Callard, J. Stark, M. Hubank (2006) Ranked predictions of p53 targets using Hidden Variable Dynamic Modelling. \emph{Genome Biology}, \bold{V7(3)}, R25. } \author{ Martino Barenco } \note{ Obviously, the expression set given as a \code{eset} argument has to be the same as the one used for the training step. } \seealso{\code{\link{training}},\code{\link{screening}},\code{\link{HVDMreport}}} \examples{ data(HVDMexample) tHVDMp53<-training(eset=fiveGyMAS5,genes=p53traingenes,degrate=0.8,actname="p53") sHVDMcd38<-fitgene(eset=fiveGyMAS5,gene="205692_s_at",tHVDM=tHVDMp53) } \keyword{ ts }