deepClustering.Rd
The present function compress data using autoencoder partially connected
deepClustering(
group = c("sudo", "docker"),
scratch.folder,
file,
separator,
nCluster,
bias,
finetune_iters = 1e+05,
nEpochs = 50000,
seed = 1111,
projectName,
bN = "NULL"
)
a character string. Two options: sudo or docker, depending to which group the user belongs
a character string indicating the path of the scratch folder
a character string indicating the path of the file, with file name and extension included
separator used in count file, e.g. '\t', ','
number of cluster in which the dataset is divided
bias method to use : "mirna" , "TF", "CUSTOM", kinasi,immunoSignature, cytoBands, ALL
number of deep iteration
number of Epochs for neural network training
important value to reproduce the same results with same input
might be different from the matrixname in order to perform different analysis on the same dataset
name of the custom bias file. This file need header, in the first column has to be the source and in the second column the gene symbol. All path needs to be provided.
if (FALSE) {
deepClustering(group=c("docker"), scratch.folder="/scratch/", file="/home/lucastormreig/clustering_autoencoder/DCA/Rfunction/setA2.csv",separator=",", nCluster=5, bias="TF", finetune_iters=3, nEpochs=2,seed=1111,projectName="TF",bN="NULL")
}