Skip to content

Commit

Permalink
Update links to point to new repo location
Browse files Browse the repository at this point in the history
  • Loading branch information
nuwang committed Mar 7, 2022
1 parent 6145f4d commit 2e082a4
Show file tree
Hide file tree
Showing 6 changed files with 11 additions and 11 deletions.
2 changes: 1 addition & 1 deletion LICENSE
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
MIT License

Copyright (c) 2021 usegalaxy-au
Copyright (c) 2021 Galaxy Project

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
Expand Down
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
[![Tests](https://github.com/usegalaxy-au/total-perspective-vortex/actions/workflows/tests.yaml/badge.svg)](https://github.com/usegalaxy-au/total-perspective-vortex/actions/workflows/tests.yaml)
[![Coverage Status](https://coveralls.io/repos/github/usegalaxy-au/total-perspective-vortex/badge.svg?branch=main)](https://coveralls.io/github/usegalaxy-au/total-perspective-vortex?branch=main)
[![Tests](https://github.com/galaxyproject/total-perspective-vortex/actions/workflows/tests.yaml/badge.svg)](https://github.com/galaxyproject/total-perspective-vortex/actions/workflows/tests.yaml)
[![Coverage Status](https://coveralls.io/repos/github/galaxyproject/total-perspective-vortex/badge.svg?branch=main)](https://coveralls.io/github/galaxyproject/total-perspective-vortex?branch=main)
[![Documentation Status](https://readthedocs.org/projects/total-perspective-vortex/badge/?version=latest)](http://total-perspective-vortex.readthedocs.org/en/latest/?badge=latest)

## <img src="https://raw.githubusercontent.com/usegalaxy-au/total-perspective-vortex/main/docs/images/vortex-logo-wide.png" width="800" height="100">
## <img src="https://raw.githubusercontent.com/galaxyproject/total-perspective-vortex/main/docs/images/vortex-logo-wide.png" width="800" height="100">

TotalPerspectiveVortex (Vortex) provides an installable set of dynamic rules for the
[Galaxy application](https://galaxyproject.org/) that can route entities (Tools, Users, Roles) to appropriate
Expand All @@ -11,7 +11,7 @@ job destinations based on a configurable yaml file.
### Installing latest development version

```python
pip install https://github.com/usegalaxy-au/total-perspective-vortex
pip install total-perspective-vortex
```

### Documentation
Expand Down
2 changes: 1 addition & 1 deletion docs/samples/job_conf.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ execution:
function: map_tool_to_destination
rules_module: vortex.rules
vortex_config_files:
- https://github.com/usegalaxy-au/total-perspective-vortex/raw/main/vortex/tests/fixtures/mapping-rules.yml
- https://github.com/galaxyproject/total-perspective-vortex/raw/main/vortex/tests/fixtures/mapping-rules.yml
- config/vortex_rules_local.yml
local:
runner: local
Expand Down
6 changes: 3 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -35,14 +35,14 @@

setuptools.setup(
name="total-perspective-vortex",
description="A library for routing entities to destinations in Galaxy",
description="A library for routing entities (jobs, users or groups) to destinations in Galaxy",
version=version,
author="Galaxy and GVL projects",
author_email="[email protected]",
license="MIT",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/usegalaxy-au/total-perspective-vortex",
url="https://github.com/galaxyproject/total-perspective-vortex",
packages=setuptools.find_packages(),
install_requires=REQS_FULL,
extras_require={
Expand All @@ -55,7 +55,7 @@
]
},
classifiers=[
"Development Status :: 3 - Alpha",
"Development Status :: 5 - Production/Stable",
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Intended Audience :: Developers",
Expand Down
2 changes: 1 addition & 1 deletion tests/fixtures/job_conf.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,5 +28,5 @@ execution:
function: map_tool_to_destination
rules_module: vortex.rules
vortex_config_files:
- https://github.com/usegalaxy-au/total-perspective-vortex/raw/main/vortex/tests/fixtures/mapping-rules.yml
- https://github.com/galaxyproject/total-perspective-vortex/raw/main/vortex/tests/fixtures/mapping-rules.yml
- config/vortex_rules_local.yml
2 changes: 1 addition & 1 deletion tests/test_mapper_merge_multiple.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ def test_merge_remote_and_local(self):
tool = mock_galaxy.Tool('bwa')
user = mock_galaxy.User('ford', '[email protected]')

config_first = "https://github.com/usegalaxy-au/total-perspective-vortex/raw/main/" \
config_first = "https://github.com/galaxyproject/total-perspective-vortex/raw/main/" \
"tests/fixtures/mapping-merge-multiple-remote.yml"
config_second = os.path.join(os.path.dirname(__file__), 'fixtures/mapping-merge-multiple-local.yml')

Expand Down

0 comments on commit 2e082a4

Please sign in to comment.