Network downloading
Warning
Gene IDs have to be consistent between input data (target genes, GMT and networks)
When data are retrieved by queries, HGNC IDs are used.
Principle
You can download biological networks from the Network Data Exchange (NDEx) [1] using networkDownloading function available in
ODAMNet. This function downloads biological networks using the NDEx2 Python client [2] and the network IDs.
Input parameters for network downloading
To download biological networks, you needs the network ID --netUUID and a name to save the network --networkFile.
These two parameters are required.
- --netUUID TEXT
NDEx network ID [required]
- --networkFile FILENAME
Output file name to save the downloaded network [required]
- --simple BOOLEAN
- if TRUE, creates a file with two columns without headerif FALSE, creates a file with three columns with header
Two columns: node 1 and node 2
Without header
Network format file used by multiXrank [3] (random walk with restart (RWR) approach).
MMP11 PRPF40A
ASB16-AS1 SHBG
KIAA0513 INTS4
KIAA0513 HAX1
RAVER2 PTBP1
CNGB1 PNN
CLDN3 POM121
CFD HDHD2
DENND10P1 TMEM256
Three columns: node 1, interaction type, node 2
With header
Network format file used by DOMINO [4] (active module identification (AMI) approach).
node_1 link node_2
MMP11 interacts with PRPF40A
ASB16-AS1 interacts with SHBG
KIAA0513 interacts with INTS4
KIAA0513 interacts with HAX1
RAVER2 interacts with PTBP1
CNGB1 interacts with PNN
CLDN3 interacts with POM121
CFD interacts with HDHD2
DENND10P1 interacts with TMEM256
Use-case command lines
Warning
If --simple FALSE, network file name should has .sif extension
odamnet networkDownloading --netUUID bfac0486-cefe-11ed-a79c-005056ae23aa \
--networkFile useCases/InputData/multiplex/1/PPI_HiUnion_LitBM_APID_gene_names_190123.gr \
--simple True