Loading docs/examples/basic_usage.rst +3 −3 Original line number Diff line number Diff line Loading @@ -7,11 +7,11 @@ This example demonstrates how to upload a dataset to Galaxy and run a tool using .. code-block:: python from nova.galaxy import Nova, Dataset, Tool, Parameters from nova.galaxy import Connection, Dataset, Tool, Parameters galaxy_url = "your_galaxy_url" galaxy_key = "your_galaxy_api_key" nova = Nova(galaxy_url, galaxy_key) nova = Connection(galaxy_url, galaxy_key) with nova.connect() as conn: # Create a data store Loading docs/examples/dataset_collections.rst +2 −2 Original line number Diff line number Diff line Loading @@ -11,7 +11,7 @@ This example illustrates how to work with dataset collections (note that uploadi galaxy_url = "your_galaxy_url" galaxy_key = "your_galaxy_api_key" nova = Nova(galaxy_url, galaxy_key) nova = Connection(galaxy_url, galaxy_key) with nova.connect() as conn: data_store = conn.create_data_store("Collection Example") Loading docs/examples/interactive_tool_usage.rst +2 −2 Original line number Diff line number Diff line Loading @@ -11,7 +11,7 @@ This example demonstrates how to run an interactive tool and retrieve its URL. galaxy_url = "your_galaxy_url" galaxy_key = "your_galaxy_api_key" nova = Nova(galaxy_url, galaxy_key) nova = Connection(galaxy_url, galaxy_key) with nova.connect() as conn: data_store = conn.create_data_store("Interactive Tool Example") Loading docs/examples/multiple_inputs.rst +2 −2 Original line number Diff line number Diff line Loading @@ -11,7 +11,7 @@ This example shows how to run a tool that takes multiple datasets as input. galaxy_url = "your_galaxy_url" galaxy_key = "your_galaxy_api_key" nova = Nova(galaxy_url, galaxy_key) nova = Connection(galaxy_url, galaxy_key) with nova.connect() as conn: data_store = conn.create_data_store("Multi-Input Example") Loading pyproject.toml +1 −1 Original line number Diff line number Diff line [tool.poetry] name = "nova-galaxy" version = "0.6.2" version = "0.7.0" description = "Utilties for accessing the ORNL Galaxy instance" authors = ["Greg Watson <watsongr@ornl.gov>", "Gregory Cage <cagege@ornl.gov>"] readme = "README.md" Loading Loading
docs/examples/basic_usage.rst +3 −3 Original line number Diff line number Diff line Loading @@ -7,11 +7,11 @@ This example demonstrates how to upload a dataset to Galaxy and run a tool using .. code-block:: python from nova.galaxy import Nova, Dataset, Tool, Parameters from nova.galaxy import Connection, Dataset, Tool, Parameters galaxy_url = "your_galaxy_url" galaxy_key = "your_galaxy_api_key" nova = Nova(galaxy_url, galaxy_key) nova = Connection(galaxy_url, galaxy_key) with nova.connect() as conn: # Create a data store Loading
docs/examples/dataset_collections.rst +2 −2 Original line number Diff line number Diff line Loading @@ -11,7 +11,7 @@ This example illustrates how to work with dataset collections (note that uploadi galaxy_url = "your_galaxy_url" galaxy_key = "your_galaxy_api_key" nova = Nova(galaxy_url, galaxy_key) nova = Connection(galaxy_url, galaxy_key) with nova.connect() as conn: data_store = conn.create_data_store("Collection Example") Loading
docs/examples/interactive_tool_usage.rst +2 −2 Original line number Diff line number Diff line Loading @@ -11,7 +11,7 @@ This example demonstrates how to run an interactive tool and retrieve its URL. galaxy_url = "your_galaxy_url" galaxy_key = "your_galaxy_api_key" nova = Nova(galaxy_url, galaxy_key) nova = Connection(galaxy_url, galaxy_key) with nova.connect() as conn: data_store = conn.create_data_store("Interactive Tool Example") Loading
docs/examples/multiple_inputs.rst +2 −2 Original line number Diff line number Diff line Loading @@ -11,7 +11,7 @@ This example shows how to run a tool that takes multiple datasets as input. galaxy_url = "your_galaxy_url" galaxy_key = "your_galaxy_api_key" nova = Nova(galaxy_url, galaxy_key) nova = Connection(galaxy_url, galaxy_key) with nova.connect() as conn: data_store = conn.create_data_store("Multi-Input Example") Loading
pyproject.toml +1 −1 Original line number Diff line number Diff line [tool.poetry] name = "nova-galaxy" version = "0.6.2" version = "0.7.0" description = "Utilties for accessing the ORNL Galaxy instance" authors = ["Greg Watson <watsongr@ornl.gov>", "Gregory Cage <cagege@ornl.gov>"] readme = "README.md" Loading