a b/man/bipartite-class.Rd
1
% Generated by roxygen2: do not edit by hand
2
% Please edit documentation in R/hummus_objet.R
3
\docType{class}
4
\name{bipartite-class}
5
\alias{bipartite-class}
6
\alias{bipartite}
7
\title{Bipartite class}
8
\description{
9
Bipartite object stores a bipartite network (edge list) and the names of the
10
left and right features' multiplexes.
11
}
12
\section{Slots}{
13
14
\describe{
15
\item{\code{network}}{(data.frame) - Bipartite network (edge list)}
16
17
\item{\code{multiplex_left}}{(character) - Left features' multiplex}
18
19
\item{\code{multiplex_right}}{(character) - Right features' multiplex}
20
}}
21
22
\examples{
23
bipartite <- bipartite(
24
                          network = bipartite_network,
25
                         multiplex_left = "RNA",
26
                        multiplex_right = "peaks")
27
28
}