Skip to main content

Unsupported NDEx utilities

Project description

Warning: This repository is for development and features may change. Please use this at your own risk.

https://img.shields.io/pypi/v/ndexutils.svg https://img.shields.io/travis/ndexbio/ndexutils.svg https://coveralls.io/repos/github/ndexbio/ndexutils/badge.svg?branch=master Documentation Status

Dependencies

Compatibility

  • Python 3.5+

Installation

git clone https://github.com/ndexbio/ndexutils
cd ndexutils
make dist
pip install dist/ndexutil*whl

OR via PyPI

pip install ndexutil

ndexmisctools.py

WARNING: Please consider this tool alpha and probably contains errors/bugs and could cause data corruption or loss. You have been warned

ndexmisctools.py lets caller perform some operations on NDEx via the command line. This tool follows format of ndexmisctools.py <COMMAND> <args>

For more information run ndexmisctools.py --help and ndexmisctools.py <COMMAND> --help

COMMANDS:

  • copynetwork - copies NDEx network between accounts and even servers

    For copying the source and destination credentials must be stored in the configuration (default ~/.ndexutils.conf) and be formatted as follows:

    [mycopyprofile]
    source_user=bob
    source_password=6ea8f0ab0b2e
    source_server=public.ndexbio.org
    dest_user=smith
    dest_password=4efe9cd8
    dest_server=public.ndexbio.org

    The following command copies the network 9025480b-6fbc-4efe-9cd8-b575ce49dfda from source credentials defined in configuration to dest

    ndexmisctools.py --profile mycopyprofile copynetwork --uuid 9025480b-6fbc-4efe-9cd8-b575ce49dfda
  • networkattribupdate - updates network attributes on network in NDEx

    WARNING: Currently name, version, and description CANNOT be updated with this command.

    Credentials must be stored in the configuration (default ~/.ndexutils.conf) and be formatted as follows:

    [myattrib]
    user=bob
    password=6ea8f0ab0b2e
    server=public.ndexbio.org

    The following command updates foo network attribute on the network 9025480b-6fbc-4efe-9cd8-b575ce49dfda

    ndexmisctools.py --profile myattrib networkattribupdate --uuid 9025480b-6fbc-4efe-9cd8-b575ce49dfda --name foo --type string --value 'my new value'
  • systemproperty - updates showcase, visibility, and indexing for single network or all networks in networkset in NDEx

    NOTE: --showcase has no effect if network visibility is private

    Credentials must be stored in the configuration (default ~/.ndexutils.conf) and be formatted as follows:

    [myattrib]
    user=bob
    password=6ea8f0ab0b2e
    server=public.ndexbio.org

    The following command enables showcase and sets indexing to meta for network with id 9025480b-6fbc-4efe-9cd8-b575ce49dfda

    ndexmisctools.py --profile myattrib systemproperty --uuid 9025480b-6fbc-4efe-9cd8-b575ce49dfda --showcase --indexlevel meta

    The following command sets visibility to public for all networks in networkset with id e9580d43-ec14-4be8-9977-9de88e1d410a

    ndexmisctools.py --profile myattrib systemproperty --networksetid e9580d43-ec14-4be8-9977-9de88e1d410a --visibility public

TSV Loader

This module contains the Tab Separated Variable Loader (TSV Loader) which generates an NDEx CX file from a tab separated text file of edge data and attributes.

To load data a load plan must be created. This plan tells the loader how to map the columns in the file to nodes, and edges. This load plan needs to validate against this load plan JSON schema

Example TSV file

SOURCE  TARGET  WEIGHT
ABCD    AAA1    0.555
GGGG    BBBB    0.305

SOURCE is the source node, TARGET is target node

A schema that could be:

{
"source_plan":
    {
        "node_name_column": "SOURCE"
    },
    "target_plan":
    {
        "node_name_column": "TARGET"
    },
    "edge_plan":
    {
        "default_predicate": "unknown",
        "property_columns": [
          {
            "column_name": "WEIGHT",
            "attribute_name": "weight",
            "data_type": "double"
          }
        ]
    }
}

Example below assumes the following:

  • ./loadplan.json is the load plan in JSON format

  • ./style.cx is a NDEx CX with a style.

import ndex2
from ndexutil.tsv.streamtsvloader import StreamTSVLoader

# using ndex2 client library read CX file as NiceCXNetwork object
style_network = ndex2.create_nice_cx_from_file('./style.cx')

loader = StreamTSVLoader('./loadplan.json', style_network)
with open('./input.tsv', 'r') as tsvfile:
    with open('./output.cx', 'w') as outfile:
        loader.write_cx_network(tsvfile, outfile)

Credits

History

0.7.0 2019-09-11

  • Added new command to ndexmisctools.py named systemproperty that lets caller update showcase, visibility, and indexing for a single network or all networks in a networkset in NDEx

0.6.1 2019-07-12

  • Fixed bug where ndexmisctools.py networkattributeupdate was creating duplicate network attributes for name, description, and value. This is due to server bug. To deal with this the code removes those entries when doing the network attribute update and forbids caller from trying to update those attributes

0.6.0 2019-07-10

  • Added new commandline utility ndexmisctools.py which lets caller copy a network from one NDEx account to another and lets one update network attributes of a network in NDEx. WARNING: THIS IS AN UNTESTED ALPHA RELEASE AND MAY CONTAIN ERRORS

0.5.0 2019-06-06

  • Added GeneSymbolSearcher class to loaderutils.py module

  • Minor bug fix in NetworkIssueReport get_fullreport_as_string() where issue text is wrapped in str() in case its not a string

0.4.0 2019-05-23

  • Added loaderutils.py module with two new classes, NetworkIssueReport and an abstract class NetworkUpdator

0.3.0 2019-05-14

  • tsv2nicecx2.convert_pandas_to_nice_cx_with_load_plan now loads @context data into a @context network attribute instead of a separate aspect

0.2.0 2019-04-01

  • StreamTSVLoader class added which enables loading of TSV data into in streaming format to handle loading of large networks

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

ndexutil-0.7.0.tar.gz (40.6 kB view hashes)

Uploaded Source

Built Distribution

ndexutil-0.7.0-py3-none-any.whl (49.6 kB view hashes)

Uploaded Python 3

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page