Skip to content
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

Reduce the chatter of the local QC pipeline #10686

Merged
merged 1 commit into from
Aug 13, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/qc.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
ontology_qc:
# The type of runner that the job will run on
runs-on: ubuntu-latest
container: obolibrary/odkfull:v1.5
container: obolibrary/odkfull:v1.5.2

# Steps represent a sequence of tasks that will be executed as part of the job
steps:
Expand Down
4 changes: 2 additions & 2 deletions src/ontology/hp-qc-pipeline.sh
Original file line number Diff line number Diff line change
Expand Up @@ -39,8 +39,8 @@ java -jar $OWL_CHECK_JAR $HP_EDIT

# The ODK QC and build:

sh -e run.sh make IMP=false test #&> log.txt
sh -e run.sh make IMP=false PAT=false MIR=false $HP_OBO
sh -e run.sh make IMP=false PAT=false MIR=false test $HP_OBO -B #&> log.txt

#- tail -n 100 log.txt
# now check hp.obo for duplicated labels, synonyms that are used for different classes
java -jar $OBO_CHECK_JAR $HP_OBO
Expand Down
2 changes: 1 addition & 1 deletion src/ontology/hp.Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ fastobo: hp.obo
noequivalents:
$(ROBOT) reason --input $(SRC) remove --select imports reason --reasoner ELK --equivalent-classes-allowed asserted-only --output test.owl && rm test.owl && echo "Success"

test: sparql_test all_reports test_obo hp_error consistency noequivalents fastobo
test: sparql_test test_obo hp_error consistency noequivalents fastobo

hp_labels.csv: $(SRC)
robot query --use-graphs true -f csv -i $(SRC) --query ../sparql/term_table.sparql $@
Expand Down
Loading