We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Currently, we append the triples to the store each time we generate the RDF file to be always sync
def generate_rdf(logger, reasoning: true, user_params: {}) mime_type = nil user_params = {} if user_params.nil? if self.hasOntologyLanguage.umls? triples_file_path = self.triples_file_path logger.info("Using UMLS turtle file found, skipping OWLAPI parse") logger.flush mime_type = LinkedData::MediaTypes.media_type_from_base(LinkedData::MediaTypes::TURTLE) generate_umls_metrics_file(triples_file_path) else output_rdf = self.rdf_path if File.exist?(output_rdf) logger.info("deleting old owlapi.xrdf ..") deleted = FileUtils.rm(output_rdf) if deleted.length > 0 logger.info("deleted") else logger.info("error deleting owlapi.rdf") end end owlapi = owlapi_parser(logger: nil) end delete_and_append(triples_file_path, logger, mime_type) ..... end
The feature request is to have the possibility with ncbo_cron to do only the "append" without re-parsing the submission file
The text was updated successfully, but these errors were encountered:
done in #132
Sorry, something went wrong.
syphax-bouazzouni
No branches or pull requests
Currently, we append the triples to the store each time we generate the RDF file to be always sync
The feature request is to have the possibility with ncbo_cron to do only the "append" without re-parsing the submission file
The text was updated successfully, but these errors were encountered: