-
Notifications
You must be signed in to change notification settings - Fork 3.3k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Chado tools #9991
Merged
Merged
Chado tools #9991
Changes from 7 commits
Commits
Show all changes
8 commits
Select commit
Hold shift + click to select a range
1f9df25
bioconda recipe for chado-tools
247c103
use meta.yaml created by skeleton
2ef6211
set source to github
fe783f1
remove build script section
d4e05d6
remove import section
8d533ab
restore import section
4c4986b
correction
49760ce
noarch: python
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
python3 setup.py install --single-version-externally-managed --record=record.txt |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,43 @@ | ||
{% set name = "chado-tools" %} | ||
{% set version = "0.0.3" %} | ||
{% set file_ext = "tar.gz" %} | ||
{% set hash_type = "sha256" %} | ||
{% set hash_value = "e8b7407013eee815288589f07314655d1e6ffc7c688f7daf58080fc4369a3668" %} | ||
|
||
package: | ||
name: {{ name|lower }} | ||
version: {{ version }} | ||
|
||
source: | ||
url: https://github.com/sanger-pathogens/{{ name }}/archive/v{{ version }}.{{ file_ext }} | ||
{{ hash_type }}: {{ hash_value }} | ||
|
||
build: | ||
number: 0 | ||
noarch: generic | ||
entry_points: | ||
- chado = scripts.chado_tools:main | ||
|
||
requirements: | ||
host: | ||
- python >=3.6 | ||
- setuptools | ||
- psycopg2 | ||
- pyyaml | ||
run: | ||
- python >=3.6 | ||
- psycopg2 | ||
- pyyaml | ||
|
||
test: | ||
imports: | ||
- scripts | ||
commands: | ||
- chado --help | ||
|
||
about: | ||
home: https://github.com/sanger-pathogens/chado-tools/ | ||
license: GNU General Public v3 (GPLv3) | ||
license_family: GPL3 | ||
license_file: LICENSE | ||
summary: Tools to access CHADO databases |
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I guess this can be
noarch: python
?There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I'm not sure. It's a command line tool, and according to the documentation, it should then be "generic" - if I understood correctly.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Tests on my machine pass flawlessly with either setting (python/generic), but fail if completely omitting "noarch". Let me know what you think is better.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
python is preferred I guess.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Ok, thanks. Changed it.