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 header
if 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).

  • GR format

MMP11       PRPF40A
ASB16-AS1   SHBG
KIAA0513    INTS4
KIAA0513    HAX1
RAVER2      PTBP1
CNGB1       PNN
CLDN3       POM121
CFD HDHD2
DENND10P1   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

References