-
Notifications
You must be signed in to change notification settings - Fork 9
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 #53 from microbiomedata/issue-52-reconcile
Issue 52 reconcile
- Loading branch information
Showing
11 changed files
with
70 additions
and
10 deletions.
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 |
---|---|---|
@@ -1,6 +1,8 @@ | ||
## NEVER EVER COMMIT THIS | ||
googlemaps-api-key.txt | ||
|
||
bin | ||
|
||
cachedir | ||
examples/outputs | ||
|
||
|
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
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,10 @@ | ||
status_label | ||
"accepted" | ||
"draft" | ||
"forthcoming" | ||
"legal" | ||
"non peer reviewed" | ||
"peer reviewed" | ||
"published" | ||
"rejected" | ||
"unpublished" |
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,10 @@ | ||
?status_label | ||
"accepted" | ||
"draft" | ||
"forthcoming" | ||
"legal" | ||
"non peer reviewed" | ||
"peer reviewed" | ||
"published" | ||
"rejected" | ||
"unpublished" |
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 @@ | ||
placeholder |
Empty file.
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 @@ | ||
placeholder |
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 @@ | ||
placeholder |
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 |
---|---|---|
@@ -1,10 +1,16 @@ | ||
import os | ||
|
||
MAIN_MODEL_DIR = os.path.join(os.path.abspath(os.path.dirname(__file__)), 'model') | ||
MAIN_SCHEMA_DIR = os.path.join(MAIN_MODEL_DIR, 'schema') | ||
MIXS_SCHEMA = os.path.join(MAIN_SCHEMA_DIR, 'mixs.json') | ||
MAIN_MODEL_DIR = os.path.join(os.path.abspath(os.path.dirname(__file__)), "model") | ||
MAIN_SCHEMA_DIR = os.path.join(MAIN_MODEL_DIR, "schema") | ||
MIXS_SCHEMA = os.path.join(MAIN_SCHEMA_DIR, "mixs.json") | ||
|
||
from .sample_annotator import SampleAnnotator | ||
from .geolocation.geotools import GeoEngine | ||
|
||
# , Message | ||
from .sample_annotator import AnnotationReport | ||
|
||
# # this import seemed to succeed a week or so ago | ||
# # but not now | ||
# # and may not even be necessary? | ||
# from report_model import Message |
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,8 @@ | ||
prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> | ||
prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> | ||
prefix owl: <http://www.w3.org/2002/07/owl#> | ||
prefix bibo: <http://purl.org/ontology/bibo/> | ||
select distinct (str(?status_label_raw) as ?status_label) | ||
where { ?s a bibo:DocumentStatus ; | ||
rdfs:label ?status_label_raw } | ||
order by ?status_label |
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 @@ | ||
placeholder |