-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathbi.clique.Rd
47 lines (40 loc) · 1.63 KB
/
bi.clique.Rd
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
% Generated by roxygen2: do not edit by hand
% Please edit documentation in R/biclique.R
\name{bi.clique}
\alias{bi.clique}
\title{Biclique enumeration}
\usage{
bi.clique(
filename,
left_least = 1,
right_least = 1,
version = 1,
filetype = 0,
getclique = 1,
envir = .GlobalEnv$.bienv
)
}
\arguments{
\item{filename}{Input file name}
\item{left_least}{Least number of left partite <default = 1>}
\item{right_least}{Least number of right partite <default = 1>}
\item{version}{Algorithm version <default = 1> [1|2]}
\item{filetype}{Input file format <default = 0>. 0-edge list, 1-binary matrix.}
\item{getclique}{Get bicliques <default = 1>. If you set it to 0. you'll only get the statistics without bicliques.}
\item{envir}{biclique environment}
}
\description{
This function will compute the bicliques and output the statistics of these bicliques.
If you want to get bicliques above a threshold, you can change the values of lleast and rleast.
The input file should be tab delimited with number of vertices and edges at the head of the input file.
If your input file does not have these values, you can use function bi.format to add these values to it.
This package supports edgelist and binary matrix file format.
Two versions of algorithms are implemented in this function, you can choose either one to get bicliques.
}
\examples{
bicliques = bi.clique(system.file("extdata", "example1.el", package = "biclique"))
bicliques = bi.clique(system.file("extdata", "example1.el", package = "biclique"), 3, 2)
bicliques = bi.clique(system.file("extdata", "example4.bmat", package = "biclique"), filetype = 1)
# check a biclique
bicliques$biclique1
}