@prefix nmdc: <https://w3id.org/nmdc/> .
nmdc:nmdc a owl:Ontology ;
rdfs:label "NMDC" ;
dcterms:license "https://creativecommons.org/publicdomain/zero/1.0/" ;
We can make this file beautiful and searchable if this error is corrected: It looks like row 8 should actually have 4 columns, instead of 2 in line 7.
This file contains hidden or 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
| Title URL Type Notes | |
| 2022-10-24: BER update https://docs.google.com/presentation/d/1Q6FV8VGCxTsVkGeUfaR-1c8CoWIRUNxpizAq2QdIbkU Google Slides BER project update (Oct 2022) | |
| 2025_DOE_BER_CM_REE https://drive.google.com/drive/folders/1WAmbFZuMw8-Oq6GxTe63XxJP1wmihmrM Folder 2025 DOE BER Critical Minerals & REE project folder | |
| Agenda Kickoff Meeting for FY25 CMM Projects.pdf https://drive.google.com/file/d/1K_HHrQC2DlsYEb2MTh67carptXVGE3ZL PDF FY25 CMM kickoff meeting agenda | |
| BER CMM 2025 AI https://docs.google.com/document/d/1Zd_zSUCzY9nBbgR0Q-co8otFSid0RB57Glnk8sHUwSc Google Doc BER Critical Minerals & Materials AI project document (2025) | |
| BER CMM AI Project Map https://docs.google.com/spreadsheets/d/1y36vxDcfs6ZxqelfpxJMC5Nw91Q5aqGVZedZ3kpGEnA Google Sheet Project mapping/organization for CMM AI work | |
| BER CMM AI Task 1.1 https://docs.google.com/presentation/d/1nwbHXUDZXv1YxPM2a5SJomLmIv-huEHcFKNzZr8o9mg Google Slides Task 1.1 presentation for BER CMM AI | |
| BER CMM Data for AI - for editing https://docs.google.com/spr |
This file contains hidden or 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
| person_set: | |
| - id: example:ck1 | |
| name: Clark Kent | |
| primary_email: [email protected] | |
| age_in_years: 33 | |
| - id: example:superman1 | |
| name: Superman | |
| primary_email: [email protected] | |
| age_in_years: 33 | |
| - id: example:kalel1 |
This file contains hidden or 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
| name: has-qualified-identifers-schema | |
| see_also: | |
| - https://turbomam.github.io/reactions-for-owl | |
| - https://gist.githubusercontent.com/turbomam/56956b2d7761fc669d2e8ab15e5cb1f0/raw/64f40292b81d3e04f873e076ae66756059651654/has_qualified_identifers_schema.yaml | |
| id: http://example.com/has_qualified_identifers_schema | |
| prefixes: | |
| has_qualified_identifers: http://example.com/has_qualified_identifers_schema/ | |
| linkml: https://w3id.org/linkml/ | |
| example: https://example.org/ |
This file contains hidden or 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
| library(devtools) | |
| # requires a properly formatted "graph_db_common.yaml" in the home directory of the user who started this script | |
| # see https://gist.github.com/turbomam/b11adbbff02d5abddaf76d30ba3249a8 for template | |
| devtools::source_gist(id = "https://gist.github.com/turbomam/f620e9e9f042b643e47de730328e3e83", | |
| sha1 = "85b1ac5c19571687aed9268e001051547c7998ed", | |
| filename = "graph_db_common.R") |
This file contains hidden or 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
| default: | |
| # enter local values and save in user's home directory as graph_db_common.yaml | |
| # GraphDB standard port = 7200 | |
| # should probably split into server address and port variables | |
| my.graphdb.base: 'http://graphdbserver:graphdbport' | |
| my.selected.repo: '' | |
| my.graphdb.username: '' | |
| my.graphdb.pw: '' | |
| # Solr standard port = 8983 | |
| med.map.kb.solr.host: '' |
This file contains hidden or 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
| options(java.parameters = "-Xmx6g") | |
| # see also https://jangorecki.gitlab.io/data.cube/library/data.table/html/dcast.data.table.html | |
| library(config) | |
| # library(dplyr) | |
| # library(ggplot2) | |
| library(httr) | |
| # library(igraph) | |
| library(jsonlite) | |
| # library(randomForest) |
This file contains hidden or 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
| default: | |
| # replace <SECRET>s with settings appropriate for your environment | |
| # and save as ~/turbo_R_setup.yaml | |
| # | |
| # still need to make file paths relative | |
| # | |
| pds.host: <SECRET> | |
| pds.port: <SECRET> | |
| pds.database: <SECRET> | |
| pds.user: <SECRET> |
This file contains hidden or 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
| options(java.parameters = "-Xmx6g") | |
| # see also https://jangorecki.gitlab.io/data.cube/library/data.table/html/dcast.data.table.html | |
| library(config) | |
| library(dplyr) | |
| library(ggplot2) | |
| library(httr) | |
| library(igraph) | |
| library(jsonlite) | |
| library(randomForest) |