Switch to unified view

a b/man/AMARETTO_ExportResults.Rd
1
% Generated by roxygen2: do not edit by hand
2
% Please edit documentation in R/amaretto_download.R
3
\name{AMARETTO_ExportResults}
4
\alias{AMARETTO_ExportResults}
5
\title{AMARETTO_ExportResults}
6
\usage{
7
AMARETTO_ExportResults(AMARETTOinit, AMARETTOresults, data_address,
8
  Heatmaps = TRUE, CNV_matrix = NULL, MET_matrix = NULL)
9
}
10
\arguments{
11
\item{AMARETTOinit}{AMARETTO initialize output}
12
13
\item{AMARETTOresults}{AMARETTO results output}
14
15
\item{data_address}{Directory to save data folder}
16
17
\item{Heatmaps}{Output heatmaps as pdf}
18
19
\item{CNV_matrix}{CNV_matrix}
20
21
\item{MET_matrix}{MET_matrix}
22
}
23
\value{
24
result
25
}
26
\description{
27
Retrieve a download of all the data linked with the run (including heatmaps)
28
}
29
\examples{
30
data('ProcessedDataLIHC')
31
TargetDirectory <- file.path(getwd(),"Downloads/");dir.create(TargetDirectory)
32
AMARETTOinit <- AMARETTO_Initialize(ProcessedData = ProcessedDataLIHC,
33
                                    NrModules = 2, VarPercentage = 50)
34
35
AMARETTOresults <- AMARETTO_Run(AMARETTOinit)
36
AMARETTO_ExportResults(AMARETTOinit,AMARETTOresults,TargetDirectory,Heatmaps = FALSE)
37
}