-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #115 from berkeleybop/114-update-build-and-qc-make…
…file-targets update build and qc Makefile targets
- Loading branch information
Showing
10 changed files
with
2,270 additions
and
1,484 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
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
Large diffs are not rendered by default.
Oops, something went wrong.
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
Large diffs are not rendered by default.
Oops, something went wrong.
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,7 @@ | ||
import sys | ||
|
||
prefixes = ('id', 'class_count', 'subclass_of_axiom_count', 'distinct_synonym_count') | ||
lines = [line.strip().split('\t') for line in sys.stdin] | ||
transposed = zip(*lines) | ||
filtered = [row for row in transposed if row[0] in prefixes] | ||
print('\n'.join('\t'.join(item for item in row) for row in filtered)) |
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,15 @@ | ||
PREFIX obo: <http://purl.obolibrary.org/obo/> | ||
PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#> | ||
|
||
SELECT ?parent ?parent_label ?child ?child_def | ||
WHERE | ||
{ ?child rdfs:subClassOf ?parent | ||
MINUS | ||
{ ?child rdfs:subClassOf <http://www.w3.org/2002/07/owl#Thing> } | ||
FILTER isURI(?parent) | ||
OPTIONAL | ||
{ ?child obo:IAO_0000115 ?child_def } | ||
OPTIONAL | ||
{ ?parent rdfs:label ?parent_label } | ||
} | ||
ORDER BY ?parent ?child |
This file was deleted.
Oops, something went wrong.