ncbo / ncbo_cron

Jobs that run on a regular basis in the NCBO infrastructure
Other
2 stars 6 forks source link

Implement the ability to generate labels independently of RDF processing (and vise versa) #64

Open mdorf opened 1 year ago

mdorf commented 1 year ago

Currently, the tasks of RDF Processing and Label Generation are lumped into a single task, process_rdf. We need an ability to perform these tasks independently of each other. For example:

This call will do BOTH, the RDF Processing and Label Generation ./bin/ncbo_ontology_process -o BSPO -t process_rdf OR ./bin/ncbo_ontology_process -o BSPO -t process_rdf,generate_labels OR ./bin/ncbo_ontology_process -o BSPO -t process_rdf=true,generate_labels=true

This call will do Label Generation ONLY and skip the RDF Processing ./bin/ncbo_ontology_process -o BSPO -t generate_labels

This call will do RDF Processing ONLY and skip the Label Generation ./bin/ncbo_ontology_process -o BSPO -t process_rdf,generate_labels=false