├── .ci ├── build.sh ├── check.sh └── run.sh ├── .conda ├── get_meta.sh ├── get_urls.py ├── install.sh ├── merge_dups.py ├── run.sh └── to_cargoport.py ├── .github └── PULL_REQUEST_TEMPLATE.md ├── .gitignore ├── .travis.yml ├── LICENSE ├── README.md ├── bin ├── check.py ├── dedup.py ├── expected.py ├── galaxy-cache-validator ├── galaxy-cachefile-dedup ├── galaxy-cachefile-external-validator ├── galaxy-cachefile-validator ├── galaxy-package-locator ├── galaxy-package-tooldeps ├── galaxy-package-updater ├── gsl.py ├── merge_apis.py ├── process_urls.py ├── stats.sh ├── travis.py └── verify.py ├── cargoport ├── __init__.py └── utils.py ├── failing_permanently-bioconda.txt ├── index.html.tpl ├── media ├── cpc-base.png ├── cpc-base.svg ├── cpc-plain-small.png └── cpc-spacey.png ├── requirements.txt ├── setup.py ├── static ├── bootstrap-dialog.min.css ├── bootstrap-dialog.min.js ├── bootstrap-theme.min.css ├── bootstrap.min.css ├── bootstrap.min.js ├── clipboard.min.js ├── dataTables.bootstrap.min.css ├── jquery-1.11.3.min.js └── jquery.dataTables.min.js ├── upgrade.sh └── urls.tsv /.ci/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/galaxyproject/cargo-port/HEAD/.ci/build.sh -------------------------------------------------------------------------------- /.ci/check.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/galaxyproject/cargo-port/HEAD/.ci/check.sh -------------------------------------------------------------------------------- /.ci/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/galaxyproject/cargo-port/HEAD/.ci/run.sh -------------------------------------------------------------------------------- /.conda/get_meta.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/galaxyproject/cargo-port/HEAD/.conda/get_meta.sh -------------------------------------------------------------------------------- /.conda/get_urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/galaxyproject/cargo-port/HEAD/.conda/get_urls.py -------------------------------------------------------------------------------- /.conda/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/galaxyproject/cargo-port/HEAD/.conda/install.sh -------------------------------------------------------------------------------- /.conda/merge_dups.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/galaxyproject/cargo-port/HEAD/.conda/merge_dups.py -------------------------------------------------------------------------------- /.conda/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/galaxyproject/cargo-port/HEAD/.conda/run.sh -------------------------------------------------------------------------------- /.conda/to_cargoport.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/galaxyproject/cargo-port/HEAD/.conda/to_cargoport.py -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/galaxyproject/cargo-port/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/galaxyproject/cargo-port/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/galaxyproject/cargo-port/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/galaxyproject/cargo-port/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/galaxyproject/cargo-port/HEAD/README.md -------------------------------------------------------------------------------- /bin/check.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/galaxyproject/cargo-port/HEAD/bin/check.py -------------------------------------------------------------------------------- /bin/dedup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/galaxyproject/cargo-port/HEAD/bin/dedup.py -------------------------------------------------------------------------------- /bin/expected.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/galaxyproject/cargo-port/HEAD/bin/expected.py -------------------------------------------------------------------------------- /bin/galaxy-cache-validator: -------------------------------------------------------------------------------- 1 | verify.py -------------------------------------------------------------------------------- /bin/galaxy-cachefile-dedup: -------------------------------------------------------------------------------- 1 | dedup.py -------------------------------------------------------------------------------- /bin/galaxy-cachefile-external-validator: -------------------------------------------------------------------------------- 1 | travis.py -------------------------------------------------------------------------------- /bin/galaxy-cachefile-validator: -------------------------------------------------------------------------------- 1 | check.py -------------------------------------------------------------------------------- /bin/galaxy-package-locator: -------------------------------------------------------------------------------- 1 | gsl.py -------------------------------------------------------------------------------- /bin/galaxy-package-tooldeps: -------------------------------------------------------------------------------- 1 | expected.py -------------------------------------------------------------------------------- /bin/galaxy-package-updater: -------------------------------------------------------------------------------- 1 | process_urls.py -------------------------------------------------------------------------------- /bin/gsl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/galaxyproject/cargo-port/HEAD/bin/gsl.py -------------------------------------------------------------------------------- /bin/merge_apis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/galaxyproject/cargo-port/HEAD/bin/merge_apis.py -------------------------------------------------------------------------------- /bin/process_urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/galaxyproject/cargo-port/HEAD/bin/process_urls.py -------------------------------------------------------------------------------- /bin/stats.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/galaxyproject/cargo-port/HEAD/bin/stats.sh -------------------------------------------------------------------------------- /bin/travis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/galaxyproject/cargo-port/HEAD/bin/travis.py -------------------------------------------------------------------------------- /bin/verify.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/galaxyproject/cargo-port/HEAD/bin/verify.py -------------------------------------------------------------------------------- /cargoport/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cargoport/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/galaxyproject/cargo-port/HEAD/cargoport/utils.py -------------------------------------------------------------------------------- /failing_permanently-bioconda.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/galaxyproject/cargo-port/HEAD/failing_permanently-bioconda.txt -------------------------------------------------------------------------------- /index.html.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/galaxyproject/cargo-port/HEAD/index.html.tpl -------------------------------------------------------------------------------- /media/cpc-base.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/galaxyproject/cargo-port/HEAD/media/cpc-base.png -------------------------------------------------------------------------------- /media/cpc-base.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/galaxyproject/cargo-port/HEAD/media/cpc-base.svg -------------------------------------------------------------------------------- /media/cpc-plain-small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/galaxyproject/cargo-port/HEAD/media/cpc-plain-small.png -------------------------------------------------------------------------------- /media/cpc-spacey.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/galaxyproject/cargo-port/HEAD/media/cpc-spacey.png -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | click 2 | future 3 | -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/galaxyproject/cargo-port/HEAD/setup.py -------------------------------------------------------------------------------- /static/bootstrap-dialog.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/galaxyproject/cargo-port/HEAD/static/bootstrap-dialog.min.css -------------------------------------------------------------------------------- /static/bootstrap-dialog.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/galaxyproject/cargo-port/HEAD/static/bootstrap-dialog.min.js -------------------------------------------------------------------------------- /static/bootstrap-theme.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/galaxyproject/cargo-port/HEAD/static/bootstrap-theme.min.css -------------------------------------------------------------------------------- /static/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/galaxyproject/cargo-port/HEAD/static/bootstrap.min.css -------------------------------------------------------------------------------- /static/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/galaxyproject/cargo-port/HEAD/static/bootstrap.min.js -------------------------------------------------------------------------------- /static/clipboard.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/galaxyproject/cargo-port/HEAD/static/clipboard.min.js -------------------------------------------------------------------------------- /static/dataTables.bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/galaxyproject/cargo-port/HEAD/static/dataTables.bootstrap.min.css -------------------------------------------------------------------------------- /static/jquery-1.11.3.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/galaxyproject/cargo-port/HEAD/static/jquery-1.11.3.min.js -------------------------------------------------------------------------------- /static/jquery.dataTables.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/galaxyproject/cargo-port/HEAD/static/jquery.dataTables.min.js -------------------------------------------------------------------------------- /upgrade.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/galaxyproject/cargo-port/HEAD/upgrade.sh -------------------------------------------------------------------------------- /urls.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/galaxyproject/cargo-port/HEAD/urls.tsv --------------------------------------------------------------------------------