[9987e3]: / man / format_bipartites_names.Rd

Download this file

36 lines (32 with data), 1.1 kB

 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
% Generated by roxygen2: do not edit by hand
% Please edit documentation in R/explore_network.R
\name{format_bipartites_names}
\alias{format_bipartites_names}
\title{Format bipartites names for python hummuspy package config functions}
\usage{
format_bipartites_names(
hummus_object,
bipartites_names = NULL,
suffix_bipartites = ".tsv"
)
}
\arguments{
\item{hummus_object}{A hummus object}
\item{bipartites_names}{A vector of bipartites names considered.
It must be a subset of the names of the bipartites in the hummus object.}
\item{suffix_bipartites}{A suffix to add to the bipartites location}
}
\value{
A list of bipartites names formatted for hummuspy config funtions
each element of the list is a list containing the right and left layer
connected by the bipartite
}
\description{
Format bipartites names for python hummuspy package config functions
}
\examples{
bipartites_dictionary <- format_bipartites_names(
hummus_object = hummus,
bipartites_names = c("atac_rna",
"tf_peaks"))
}