チェンジセット 93
- 更新日時:
- 2014/07/02 23:50:41 (10 年 前)
- パス:
- BH13SPARQLBuilder/src/org/biohackathon/SPARQLBuilder/OWL
- ファイル:
-
- 3 変更
凡例:
- 変更なし
- 追加
- 削除
-
BH13SPARQLBuilder/src/org/biohackathon/SPARQLBuilder/OWL/AcquiredStructureAnalyzer.java
r88 r93 65 65 66 66 67 68 67 69 public SClass[] getOWLClasses(String[] graphURIs, String[] keywords, String language, boolean countInstances) throws Exception{ 68 70 String[] targetGraphURIs = filterGraphURIs(graphURIs); -
BH13SPARQLBuilder/src/org/biohackathon/SPARQLBuilder/OWL/RDFSchemaAnalyzerFactory.java
r90 r93 20 20 } 21 21 22 private void setAcqiredRDFFiles(String dirFile) throws Exception{ 23 setAcqiredRDFFiles(new File(dirFile)); 24 } 25 22 26 private void setAcqiredRDFFiles(File data) throws Exception{ 23 27 StructureCrawler sc = new StructureCrawler(data); 24 28 acquiredRDFFiles = sc.getAcquiredStructureFiles(); 25 29 } 26 30 27 31 public String[] getEndpointURIList(){ 28 32 if( acquiredRDFFiles == null ){ -
BH13SPARQLBuilder/src/org/biohackathon/SPARQLBuilder/OWL/StructureCrawler.java
r89 r93 14 14 private File dataDir = null; 15 15 16 // this is just for a test 16 17 public static void main(String[] args) throws Exception{ 17 18 StructureCrawler sc = new StructureCrawler(new File("c:\\temp"));