Skip to content

Commit

Permalink
math domain error with repeated --ontology-only observations
Browse files Browse the repository at this point in the history
  • Loading branch information
turbomam committed Jan 27, 2025
1 parent 8a536e0 commit 0e29e8e
Showing 1 changed file with 37 additions and 0 deletions.
37 changes: 37 additions & 0 deletions project.Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -364,6 +364,17 @@ local/plant_associated_env_local_scale_curies.txt: local/aggregate_value_sets.ts
local/plant_associated_env_medium_curies.txt: local/aggregate_value_sets.tsv
egrep 'Plant env_medium' $< | cut -f 3 > $@

local/sediment_env_broad_scale_curies.txt: local/aggregate_value_sets.tsv
egrep 'Sediment env_broad_scale' $< | cut -f 3 > $@

local/sediment_env_local_scale_curies.txt: local/aggregate_value_sets.tsv
egrep 'Sediment env_local_scale' $< | cut -f 3 > $@

local/sediment_env_medium_curies.txt: local/aggregate_value_sets.tsv
egrep 'Sediment env_medium' $< | cut -f 3 > $@

local/env_medium_curies.txt: local/aggregate_value_sets.tsv
egrep 'env_medium' $< | cut -f 3 > $@

local/soil_env_broad_scale_enrichment.tsv: local/soil_env_broad_scale_curies.txt
$(RUN) runoak -i sqlite:obo:envo enrichment \
Expand Down Expand Up @@ -436,4 +447,30 @@ local/plant_associated_env_medium_enrichment_by_po.tsv: local/plant_associated_e
-O tsv \
-o $@ .idfile $<

local/sediment_env_medium_enrichment.tsv: local/sediment_env_medium_curies.txt
$(RUN) runoak -i sqlite:obo:envo enrichment \
--ontology-only \
-p i \
-O tsv \
-o $@ .idfile $<

local/sediment_env_broad_scale_enrichment.tsv: local/sediment_env_broad_scale_curies.txt
$(RUN) runoak -i sqlite:obo:envo enrichment \
--ontology-only \
-p i \
-O tsv \
-o $@ .idfile $<

local/sediment_env_local_scale_enrichment.tsv: local/sediment_env_local_scale_curies.txt
$(RUN) runoak -i sqlite:obo:envo enrichment \
--ontology-only \
-p i \
-O tsv \
-o $@ .idfile $<

local/env_medium_enrichment.tsv: local/env_medium_curies.txt
$(RUN) runoak -i sqlite:obo:envo enrichment \
--ontology-only \
-p i \
-O tsv \
-o $@ .idfile $<

0 comments on commit 0e29e8e

Please sign in to comment.