pho 0.5 → 0.6

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (80) hide show
  1. data/CHANGES +17 -0
  2. data/Rakefile +10 -2
  3. data/bin/talis_store +37 -92
  4. data/doc/rdoc/classes/Pho.html +11 -0
  5. data/doc/rdoc/classes/Pho/CommandLine.html +508 -0
  6. data/doc/rdoc/classes/Pho/DatatypeProperty.html +15 -15
  7. data/doc/rdoc/classes/Pho/Enrichment.html +1 -1
  8. data/doc/rdoc/classes/Pho/Enrichment/{ResourceEnricher.html → StoreEnricher.html} +158 -58
  9. data/doc/rdoc/classes/Pho/Etags.html +36 -36
  10. data/doc/rdoc/classes/Pho/Facet/Results.html +19 -19
  11. data/doc/rdoc/classes/Pho/Facet/Term.html +6 -6
  12. data/doc/rdoc/classes/Pho/FieldPredicateMap.html +94 -94
  13. data/doc/rdoc/classes/Pho/FieldWeighting.html +14 -14
  14. data/doc/rdoc/classes/Pho/FileManagement/AbstractFileManager.html +126 -91
  15. data/doc/rdoc/classes/Pho/FileManagement/FileManager.html +68 -62
  16. data/doc/rdoc/classes/Pho/FileManagement/RDFManager.html +22 -57
  17. data/doc/rdoc/classes/Pho/Job.html +68 -67
  18. data/doc/rdoc/classes/Pho/Jobs.html +62 -62
  19. data/doc/rdoc/classes/Pho/QueryProfile.html +64 -64
  20. data/doc/rdoc/classes/Pho/RDF.html +120 -0
  21. data/doc/rdoc/classes/Pho/RDF/Parser.html +277 -0
  22. data/doc/rdoc/classes/Pho/ResourceHash.html +1 -1
  23. data/doc/rdoc/classes/Pho/ResourceHash/Converter.html +48 -46
  24. data/doc/rdoc/classes/Pho/ResourceHash/SetAlgebra.html +15 -14
  25. data/doc/rdoc/classes/Pho/Snapshot.html +36 -36
  26. data/doc/rdoc/classes/Pho/Sparql.html +50 -0
  27. data/doc/rdoc/classes/Pho/Sparql/SparqlClient.html +147 -68
  28. data/doc/rdoc/classes/Pho/Sparql/SparqlHelper.html +195 -114
  29. data/doc/rdoc/classes/Pho/Status.html +26 -26
  30. data/doc/rdoc/classes/Pho/Store.html +271 -264
  31. data/doc/rdoc/classes/Pho/StoreSparqlClient.html +183 -0
  32. data/doc/rdoc/classes/Pho/Update.html +1 -0
  33. data/doc/rdoc/classes/Pho/Update/Changeset.html +69 -68
  34. data/doc/rdoc/classes/Pho/Update/ChangesetBuilder.html +24 -24
  35. data/doc/rdoc/classes/Pho/Update/Changesets.html +15 -14
  36. data/doc/rdoc/classes/Pho/Update/LiteralStatement.html +18 -18
  37. data/doc/rdoc/classes/Pho/Update/ResourceStatement.html +24 -24
  38. data/doc/rdoc/classes/Pho/Update/Statement.html +28 -27
  39. data/doc/rdoc/classes/String.html +1 -1
  40. data/doc/rdoc/created.rid +1 -1
  41. data/doc/rdoc/files/CHANGES.html +53 -1
  42. data/doc/rdoc/files/lib/pho/changeset_rb.html +1 -1
  43. data/doc/rdoc/files/lib/pho/command_line_rb.html +101 -0
  44. data/doc/rdoc/files/lib/pho/converter_rb.html +1 -1
  45. data/doc/rdoc/files/lib/pho/enrichment_rb.html +1 -1
  46. data/doc/rdoc/files/lib/pho/file_management_rb.html +1 -1
  47. data/doc/rdoc/files/lib/pho/file_manager_rb.html +1 -1
  48. data/doc/rdoc/files/lib/pho/rdf_collection_rb.html +1 -1
  49. data/doc/rdoc/files/lib/pho/rdf_rb.html +108 -0
  50. data/doc/rdoc/files/lib/pho/sparql_rb.html +1 -1
  51. data/doc/rdoc/files/lib/pho/store_rb.html +8 -1
  52. data/doc/rdoc/files/lib/pho_rb.html +4 -2
  53. data/doc/rdoc/fr_class_index.html +6 -1
  54. data/doc/rdoc/fr_file_index.html +2 -0
  55. data/doc/rdoc/fr_method_index.html +192 -172
  56. data/examples/calais/bio.txt +7 -0
  57. data/examples/calais/dump.rb +17 -0
  58. data/examples/calais/enlighten.rb +23 -0
  59. data/examples/calais/output.rdf +25 -0
  60. data/examples/sinatra/viewer.rb +20 -0
  61. data/lib/pho.rb +4 -1
  62. data/lib/pho/changeset.rb +17 -1
  63. data/lib/pho/command_line.rb +166 -0
  64. data/lib/pho/converter.rb +8 -3
  65. data/lib/pho/enrichment.rb +93 -28
  66. data/lib/pho/file_management.rb +32 -19
  67. data/lib/pho/file_manager.rb +22 -26
  68. data/lib/pho/rdf.rb +74 -0
  69. data/lib/pho/rdf_collection.rb +2 -17
  70. data/lib/pho/sparql.rb +150 -38
  71. data/lib/pho/store.rb +28 -2
  72. data/tests/tc_contentbox.rb +41 -0
  73. data/tests/tc_enrichment.rb +41 -4
  74. data/tests/tc_file_manager.rb +97 -7
  75. data/tests/tc_rdf_collection.rb +25 -13
  76. data/tests/tc_rdf_parser.rb +37 -0
  77. data/tests/tc_sparql.rb +72 -2
  78. data/tests/tc_sparql_helper.rb +16 -0
  79. data/tests/ts_pho.rb +2 -1
  80. metadata +20 -3
@@ -20,183 +20,203 @@
20
20
  <div id="index">
21
21
  <h1 class="section-bar">Methods</h1>
22
22
  <div id="index-entries">
23
- <a href="classes/Pho/QueryProfile.html#M000103"><< (Pho::QueryProfile)</a><br />
24
- <a href="classes/Pho/FieldPredicateMap.html#M000084"><< (Pho::FieldPredicateMap)</a><br />
25
- <a href="classes/Pho/Update/LiteralStatement.html#M000039">== (Pho::Update::LiteralStatement)</a><br />
26
- <a href="classes/Pho/Update/ResourceStatement.html#M000046">== (Pho::Update::ResourceStatement)</a><br />
27
- <a href="classes/Pho/Etags.html#M000174">add (Pho::Etags)</a><br />
28
- <a href="classes/Pho/Update/Changeset.html#M000059">add_addition (Pho::Update::Changeset)</a><br />
29
- <a href="classes/Pho/Update/Changeset.html#M000060">add_additions (Pho::Update::Changeset)</a><br />
23
+ <a href="classes/Pho/QueryProfile.html#M000121"><< (Pho::QueryProfile)</a><br />
24
+ <a href="classes/Pho/FieldPredicateMap.html#M000091"><< (Pho::FieldPredicateMap)</a><br />
25
+ <a href="classes/Pho/Update/ResourceStatement.html#M000049">== (Pho::Update::ResourceStatement)</a><br />
26
+ <a href="classes/Pho/Update/LiteralStatement.html#M000042">== (Pho::Update::LiteralStatement)</a><br />
27
+ <a href="classes/Pho/Etags.html#M000194">add (Pho::Etags)</a><br />
28
+ <a href="classes/Pho/Update/Changeset.html#M000062">add_addition (Pho::Update::Changeset)</a><br />
29
+ <a href="classes/Pho/Update/Changeset.html#M000063">add_additions (Pho::Update::Changeset)</a><br />
30
30
  <a href="classes/Pho/Sparql/SparqlClient.html#M000003">add_default_graph (Pho::Sparql::SparqlClient)</a><br />
31
- <a href="classes/Pho/Etags.html#M000175">add_from_response (Pho::Etags)</a><br />
31
+ <a href="classes/Pho/Etags.html#M000195">add_from_response (Pho::Etags)</a><br />
32
32
  <a href="classes/Pho/Sparql/SparqlClient.html#M000004">add_named_graph (Pho::Sparql::SparqlClient)</a><br />
33
- <a href="classes/Pho/Update/Changeset.html#M000062">add_removal (Pho::Update::Changeset)</a><br />
34
- <a href="classes/Pho/Update/Changeset.html#M000063">add_removals (Pho::Update::Changeset)</a><br />
35
- <a href="classes/Pho/Update/Changeset.html#M000058">additions (Pho::Update::Changeset)</a><br />
36
- <a href="classes/Pho/Update/Changesets.html#M000049">all_to_rdf (Pho::Update::Changesets)</a><br />
37
- <a href="classes/Pho/Sparql/SparqlHelper.html#M000011">apply_initial_bindings (Pho::Sparql::SparqlHelper)</a><br />
38
- <a href="classes/Pho/Sparql/SparqlHelper.html#M000015">ask (Pho::Sparql::SparqlHelper)</a><br />
39
- <a href="classes/Pho/Sparql/SparqlClient.html#M000009">ask (Pho::Sparql::SparqlClient)</a><br />
40
- <a href="classes/Pho/Store.html#M000140">augment (Pho::Store)</a><br />
41
- <a href="classes/Pho/Store.html#M000139">augment_uri (Pho::Store)</a><br />
42
- <a href="classes/Pho/Snapshot.html#M000159">backup (Pho::Snapshot)</a><br />
43
- <a href="classes/Pho/Update/ChangesetBuilder.html#M000042">build (Pho::Update::ChangesetBuilder)</a><br />
44
- <a href="classes/Pho/Update/ChangesetBuilder.html#M000041">build_batch (Pho::Update::ChangesetBuilder)</a><br />
45
- <a href="classes/Pho/Jobs.html#M000116">build_job_request (Pho::Jobs)</a><br />
46
- <a href="classes/Pho/Store.html#M000124">build_uri (Pho::Store)</a><br />
47
- <a href="classes/Pho/Job.html#M000165">completed? (Pho::Job)</a><br />
48
- <a href="classes/Pho/Store.html#M000141">configure_headers_for_conditional_get (Pho::Store)</a><br />
49
- <a href="classes/Pho/Sparql/SparqlClient.html#M000008">construct (Pho::Sparql::SparqlClient)</a><br />
50
- <a href="classes/Pho/Sparql/SparqlHelper.html#M000018">construct_to_resource_hash (Pho::Sparql::SparqlHelper)</a><br />
51
- <a href="classes/Pho/Update/Statement.html#M000051">create_literal (Pho::Update::Statement)</a><br />
52
- <a href="classes/Pho/FieldPredicateMap.html#M000082">create_mapping (Pho::FieldPredicateMap)</a><br />
53
- <a href="classes/Pho/Update/Statement.html#M000052">create_resource (Pho::Update::Statement)</a><br />
54
- <a href="classes/Pho/Update/ChangesetBuilder.html#M000043">create_statements (Pho::Update::ChangesetBuilder)</a><br />
55
- <a href="classes/Pho/Update/ChangesetBuilder.html#M000044">create_statements_for_uri (Pho::Update::ChangesetBuilder)</a><br />
56
- <a href="classes/Pho/QueryProfile.html#M000101">create_weighting (Pho::QueryProfile)</a><br />
57
- <a href="classes/Pho/Store.html#M000144">delete_item (Pho::Store)</a><br />
58
- <a href="classes/Pho/Sparql/SparqlClient.html#M000006">describe (Pho::Sparql::SparqlClient)</a><br />
59
- <a href="classes/Pho/Store.html#M000128">describe (Pho::Store)</a><br />
60
- <a href="classes/Pho/Sparql/SparqlHelper.html#M000019">describe_to_resource_hash (Pho::Sparql::SparqlHelper)</a><br />
61
- <a href="classes/Pho/Enrichment/ResourceEnricher.html#M000072">enrich (Pho::Enrichment::ResourceEnricher)</a><br />
62
- <a href="classes/Pho/Store.html#M000137">facet (Pho::Store)</a><br />
63
- <a href="classes/Pho/FileManagement/AbstractFileManager.html#M000029">failures (Pho::FileManagement::AbstractFileManager)</a><br />
64
- <a href="classes/Pho/Etags.html#M000176">get (Pho::Etags)</a><br />
65
- <a href="classes/Pho/QueryProfile.html#M000104">get_by_name (Pho::QueryProfile)</a><br />
66
- <a href="classes/Pho/FieldPredicateMap.html#M000089">get_by_name (Pho::FieldPredicateMap)</a><br />
67
- <a href="classes/Pho/FieldPredicateMap.html#M000090">get_by_uri (Pho::FieldPredicateMap)</a><br />
68
- <a href="classes/Pho/FileManagement/AbstractFileManager.html#M000032">get_fail_file_for (Pho::FileManagement::AbstractFileManager)</a><br />
69
- <a href="classes/Pho/Store.html#M000151">get_field_predicate_map (Pho::Store)</a><br />
70
- <a href="classes/Pho/Store.html#M000145">get_item (Pho::Store)</a><br />
71
- <a href="classes/Pho/Store.html#M000146">get_job (Pho::Store)</a><br />
72
- <a href="classes/Pho/Store.html#M000147">get_jobs (Pho::Store)</a><br />
73
- <a href="classes/Pho/FieldPredicateMap.html#M000085">get_name (Pho::FieldPredicateMap)</a><br />
74
- <a href="classes/Pho/FileManagement/AbstractFileManager.html#M000033">get_ok_file_for (Pho::FileManagement::AbstractFileManager)</a><br />
75
- <a href="classes/Pho/FieldPredicateMap.html#M000086">get_property_uri (Pho::FieldPredicateMap)</a><br />
76
- <a href="classes/Pho/Store.html#M000153">get_query_profile (Pho::Store)</a><br />
77
- <a href="classes/Pho/Store.html#M000138">get_search_params (Pho::Store)</a><br />
78
- <a href="classes/Pho/Store.html#M000150">get_snapshots (Pho::Store)</a><br />
79
- <a href="classes/Pho/Store.html#M000149">get_status (Pho::Store)</a><br />
80
- <a href="classes/Pho/Etags.html#M000177">has_tag? (Pho::Etags)</a><br />
81
- <a href="classes/Pho/Enrichment/ResourceEnricher.html#M000070">infer (Pho::Enrichment::ResourceEnricher)</a><br />
82
- <a href="classes/Pho/FileManagement/FileManager.html#M000035">list (Pho::FileManagement::FileManager)</a><br />
83
- <a href="classes/Pho/FileManagement/RDFManager.html#M000022">list (Pho::FileManagement::RDFManager)</a><br />
84
- <a href="classes/Pho/FieldPredicateMap.html#M000087">mapped_name? (Pho::FieldPredicateMap)</a><br />
85
- <a href="classes/Pho/QueryProfile.html#M000107">mapped_name? (Pho::QueryProfile)</a><br />
86
- <a href="classes/Pho/FieldPredicateMap.html#M000088">mapped_uri? (Pho::FieldPredicateMap)</a><br />
87
- <a href="classes/Pho/Enrichment/ResourceEnricher.html#M000071">merge (Pho::Enrichment::ResourceEnricher)</a><br />
88
- <a href="classes/Pho/ResourceHash/SetAlgebra.html#M000079">minus (Pho::ResourceHash::SetAlgebra)</a><br />
89
- <a href="classes/Pho/Sparql/SparqlClient.html#M000007">multi_describe (Pho::Sparql::SparqlClient)</a><br />
90
- <a href="classes/Pho/Sparql/SparqlHelper.html#M000020">multi_describe (Pho::Sparql::SparqlHelper)</a><br />
91
- <a href="classes/Pho/Snapshot.html#M000157">new (Pho::Snapshot)</a><br />
92
- <a href="classes/Pho/Update/LiteralStatement.html#M000038">new (Pho::Update::LiteralStatement)</a><br />
93
- <a href="classes/Pho/Facet/Term.html#M000068">new (Pho::Facet::Term)</a><br />
94
- <a href="classes/Pho/FileManagement/FileManager.html#M000034">new (Pho::FileManagement::FileManager)</a><br />
95
- <a href="classes/Pho/DatatypeProperty.html#M000120">new (Pho::DatatypeProperty)</a><br />
96
- <a href="classes/Pho/FileManagement/AbstractFileManager.html#M000025">new (Pho::FileManagement::AbstractFileManager)</a><br />
97
- <a href="classes/Pho/Enrichment/ResourceEnricher.html#M000069">new (Pho::Enrichment::ResourceEnricher)</a><br />
98
- <a href="classes/Pho/QueryProfile.html#M000102">new (Pho::QueryProfile)</a><br />
99
- <a href="classes/Pho/FileManagement/RDFManager.html#M000021">new (Pho::FileManagement::RDFManager)</a><br />
100
- <a href="classes/Pho/Status.html#M000096">new (Pho::Status)</a><br />
101
- <a href="classes/Pho/Facet/Results.html#M000065">new (Pho::Facet::Results)</a><br />
102
- <a href="classes/Pho/Store.html#M000122">new (Pho::Store)</a><br />
103
- <a href="classes/Pho/Job.html#M000160">new (Pho::Job)</a><br />
104
- <a href="classes/Pho/FieldWeighting.html#M000170">new (Pho::FieldWeighting)</a><br />
105
- <a href="classes/Pho/FieldPredicateMap.html#M000083">new (Pho::FieldPredicateMap)</a><br />
106
- <a href="classes/Pho/Etags.html#M000172">new (Pho::Etags)</a><br />
107
- <a href="classes/Pho/Update/Statement.html#M000054">new (Pho::Update::Statement)</a><br />
33
+ <a href="classes/Pho/Update/Changeset.html#M000065">add_removal (Pho::Update::Changeset)</a><br />
34
+ <a href="classes/Pho/Update/Changeset.html#M000066">add_removals (Pho::Update::Changeset)</a><br />
35
+ <a href="classes/Pho/Update/Changeset.html#M000061">additions (Pho::Update::Changeset)</a><br />
36
+ <a href="classes/Pho/Update/Changesets.html#M000052">all_to_rdf (Pho::Update::Changesets)</a><br />
37
+ <a href="classes/Pho/Sparql/SparqlHelper.html#M000012">apply_initial_bindings (Pho::Sparql::SparqlHelper)</a><br />
38
+ <a href="classes/Pho/Sparql/SparqlClient.html#M000010">ask (Pho::Sparql::SparqlClient)</a><br />
39
+ <a href="classes/Pho/Sparql/SparqlHelper.html#M000016">ask (Pho::Sparql::SparqlHelper)</a><br />
40
+ <a href="classes/Pho/Store.html#M000160">augment (Pho::Store)</a><br />
41
+ <a href="classes/Pho/Store.html#M000159">augment_uri (Pho::Store)</a><br />
42
+ <a href="classes/Pho/CommandLine.html#M000109">backup (Pho::CommandLine)</a><br />
43
+ <a href="classes/Pho/Snapshot.html#M000179">backup (Pho::Snapshot)</a><br />
44
+ <a href="classes/Pho/Update/ChangesetBuilder.html#M000045">build (Pho::Update::ChangesetBuilder)</a><br />
45
+ <a href="classes/Pho/Update/ChangesetBuilder.html#M000044">build_batch (Pho::Update::ChangesetBuilder)</a><br />
46
+ <a href="classes/Pho/Jobs.html#M000134">build_job_request (Pho::Jobs)</a><br />
47
+ <a href="classes/Pho/Store.html#M000144">build_uri (Pho::Store)</a><br />
48
+ <a href="classes/Pho/Job.html#M000185">completed? (Pho::Job)</a><br />
49
+ <a href="classes/Pho/Store.html#M000161">configure_headers_for_conditional_get (Pho::Store)</a><br />
50
+ <a href="classes/Pho/Sparql/SparqlClient.html#M000009">construct (Pho::Sparql::SparqlClient)</a><br />
51
+ <a href="classes/Pho/Sparql/SparqlHelper.html#M000019">construct_to_resource_hash (Pho::Sparql::SparqlHelper)</a><br />
52
+ <a href="classes/Pho/Update/Statement.html#M000054">create_literal (Pho::Update::Statement)</a><br />
53
+ <a href="classes/Pho/FieldPredicateMap.html#M000089">create_mapping (Pho::FieldPredicateMap)</a><br />
54
+ <a href="classes/Pho/Update/Statement.html#M000055">create_resource (Pho::Update::Statement)</a><br />
55
+ <a href="classes/Pho/Update/ChangesetBuilder.html#M000046">create_statements (Pho::Update::ChangesetBuilder)</a><br />
56
+ <a href="classes/Pho/Update/ChangesetBuilder.html#M000047">create_statements_for_uri (Pho::Update::ChangesetBuilder)</a><br />
57
+ <a href="classes/Pho/QueryProfile.html#M000119">create_weighting (Pho::QueryProfile)</a><br />
58
+ <a href="classes/Pho/Store.html#M000164">delete_item (Pho::Store)</a><br />
59
+ <a href="classes/Pho/CommandLine.html#M000114">describe (Pho::CommandLine)</a><br />
60
+ <a href="classes/Pho/Store.html#M000148">describe (Pho::Store)</a><br />
61
+ <a href="classes/Pho/Sparql/SparqlClient.html#M000007">describe (Pho::Sparql::SparqlClient)</a><br />
62
+ <a href="classes/Pho/Sparql/SparqlHelper.html#M000020">describe_to_resource_hash (Pho::Sparql::SparqlHelper)</a><br />
63
+ <a href="classes/Pho/Sparql/SparqlClient.html#M000006">describe_uri (Pho::Sparql::SparqlClient)</a><br />
64
+ <a href="classes/Pho/StoreSparqlClient.html#M000141">describe_uri (Pho::StoreSparqlClient)</a><br />
65
+ <a href="classes/Pho/Sparql/SparqlHelper.html#M000022">describe_uri (Pho::Sparql::SparqlHelper)</a><br />
66
+ <a href="classes/Pho/Enrichment/StoreEnricher.html#M000075">enrich (Pho::Enrichment::StoreEnricher)</a><br />
67
+ <a href="classes/Pho/Store.html#M000157">facet (Pho::Store)</a><br />
68
+ <a href="classes/Pho/FileManagement/AbstractFileManager.html#M000031">failures (Pho::FileManagement::AbstractFileManager)</a><br />
69
+ <a href="classes/Pho/Etags.html#M000196">get (Pho::Etags)</a><br />
70
+ <a href="classes/Pho/QueryProfile.html#M000122">get_by_name (Pho::QueryProfile)</a><br />
71
+ <a href="classes/Pho/FieldPredicateMap.html#M000096">get_by_name (Pho::FieldPredicateMap)</a><br />
72
+ <a href="classes/Pho/FieldPredicateMap.html#M000097">get_by_uri (Pho::FieldPredicateMap)</a><br />
73
+ <a href="classes/Pho/FileManagement/AbstractFileManager.html#M000034">get_fail_file_for (Pho::FileManagement::AbstractFileManager)</a><br />
74
+ <a href="classes/Pho/Store.html#M000171">get_field_predicate_map (Pho::Store)</a><br />
75
+ <a href="classes/Pho/Store.html#M000165">get_item (Pho::Store)</a><br />
76
+ <a href="classes/Pho/Store.html#M000166">get_job (Pho::Store)</a><br />
77
+ <a href="classes/Pho/Store.html#M000167">get_jobs (Pho::Store)</a><br />
78
+ <a href="classes/Pho/FieldPredicateMap.html#M000092">get_name (Pho::FieldPredicateMap)</a><br />
79
+ <a href="classes/Pho/FileManagement/AbstractFileManager.html#M000035">get_ok_file_for (Pho::FileManagement::AbstractFileManager)</a><br />
80
+ <a href="classes/Pho/FieldPredicateMap.html#M000093">get_property_uri (Pho::FieldPredicateMap)</a><br />
81
+ <a href="classes/Pho/Store.html#M000173">get_query_profile (Pho::Store)</a><br />
82
+ <a href="classes/Pho/Store.html#M000158">get_search_params (Pho::Store)</a><br />
83
+ <a href="classes/Pho/Store.html#M000170">get_snapshots (Pho::Store)</a><br />
84
+ <a href="classes/Pho/Store.html#M000169">get_status (Pho::Store)</a><br />
85
+ <a href="classes/Pho/Etags.html#M000197">has_tag? (Pho::Etags)</a><br />
86
+ <a href="classes/Pho/Enrichment/StoreEnricher.html#M000073">infer (Pho::Enrichment::StoreEnricher)</a><br />
87
+ <a href="classes/Pho/FileManagement/RDFManager.html#M000024">list (Pho::FileManagement::RDFManager)</a><br />
88
+ <a href="classes/Pho/FileManagement/FileManager.html#M000037">list (Pho::FileManagement::FileManager)</a><br />
89
+ <a href="classes/Pho/FieldPredicateMap.html#M000094">mapped_name? (Pho::FieldPredicateMap)</a><br />
90
+ <a href="classes/Pho/QueryProfile.html#M000125">mapped_name? (Pho::QueryProfile)</a><br />
91
+ <a href="classes/Pho/FieldPredicateMap.html#M000095">mapped_uri? (Pho::FieldPredicateMap)</a><br />
92
+ <a href="classes/Pho/Enrichment/StoreEnricher.html#M000074">merge (Pho::Enrichment::StoreEnricher)</a><br />
93
+ <a href="classes/Pho/ResourceHash/SetAlgebra.html#M000082">minus (Pho::ResourceHash::SetAlgebra)</a><br />
94
+ <a href="classes/Pho/Sparql/SparqlClient.html#M000008">multi_describe (Pho::Sparql::SparqlClient)</a><br />
95
+ <a href="classes/Pho/Sparql/SparqlHelper.html#M000021">multi_describe (Pho::Sparql::SparqlHelper)</a><br />
96
+ <a href="classes/Pho/FileManagement/FileManager.html#M000038">name_for_file (Pho::FileManagement::FileManager)</a><br />
97
+ <a href="classes/Pho/Status.html#M000103">new (Pho::Status)</a><br />
98
+ <a href="classes/Pho/QueryProfile.html#M000120">new (Pho::QueryProfile)</a><br />
99
+ <a href="classes/Pho/Enrichment/StoreEnricher.html#M000072">new (Pho::Enrichment::StoreEnricher)</a><br />
100
+ <a href="classes/Pho/StoreSparqlClient.html#M000140">new (Pho::StoreSparqlClient)</a><br />
101
+ <a href="classes/Pho/Etags.html#M000192">new (Pho::Etags)</a><br />
108
102
  <a href="classes/Pho/Sparql/SparqlClient.html#M000002">new (Pho::Sparql::SparqlClient)</a><br />
109
- <a href="classes/Pho/Update/Changeset.html#M000055">new (Pho::Update::Changeset)</a><br />
110
- <a href="classes/Pho/Update/ResourceStatement.html#M000045">new (Pho::Update::ResourceStatement)</a><br />
111
- <a href="classes/Pho/FileManagement/FileManager.html#M000036">new_files (Pho::FileManagement::FileManager)</a><br />
112
- <a href="classes/Pho/FileManagement/RDFManager.html#M000023">new_files (Pho::FileManagement::RDFManager)</a><br />
113
- <a href="classes/Pho/ResourceHash/SetAlgebra.html#M000080">object_in_array? (Pho::ResourceHash::SetAlgebra)</a><br />
114
- <a href="classes/Pho/Job.html#M000162">parse (Pho::Job)</a><br />
115
- <a href="classes/Pho/Snapshot.html#M000156">parse (Pho::Snapshot)</a><br />
116
- <a href="classes/Pho/ResourceHash/Converter.html#M000077">parse (Pho::ResourceHash::Converter)</a><br />
117
- <a href="classes/Pho/Facet/Results.html#M000067">parse (Pho::Facet::Results)</a><br />
118
- <a href="classes/Pho/ResourceHash/Converter.html#M000073">parse_json (Pho::ResourceHash::Converter)</a><br />
119
- <a href="classes/Pho/ResourceHash/Converter.html#M000075">parse_ntriples (Pho::ResourceHash::Converter)</a><br />
120
- <a href="classes/Pho/ResourceHash/Converter.html#M000074">parse_rdfxml (Pho::ResourceHash::Converter)</a><br />
121
- <a href="classes/Pho/ResourceHash/Converter.html#M000076">parse_turtle (Pho::ResourceHash::Converter)</a><br />
122
- <a href="classes/Pho/Job.html#M000163">progress_updates (Pho::Job)</a><br />
123
- <a href="classes/Pho/Store.html#M000152">put_field_predicate_map (Pho::Store)</a><br />
124
- <a href="classes/Pho/Store.html#M000154">put_query_profile (Pho::Store)</a><br />
103
+ <a href="classes/Pho/Update/ResourceStatement.html#M000048">new (Pho::Update::ResourceStatement)</a><br />
104
+ <a href="classes/Pho/Facet/Term.html#M000071">new (Pho::Facet::Term)</a><br />
105
+ <a href="classes/Pho/CommandLine.html#M000107">new (Pho::CommandLine)</a><br />
106
+ <a href="classes/Pho/Store.html#M000142">new (Pho::Store)</a><br />
107
+ <a href="classes/Pho/FieldWeighting.html#M000190">new (Pho::FieldWeighting)</a><br />
108
+ <a href="classes/Pho/Facet/Results.html#M000068">new (Pho::Facet::Results)</a><br />
109
+ <a href="classes/Pho/Update/LiteralStatement.html#M000041">new (Pho::Update::LiteralStatement)</a><br />
110
+ <a href="classes/Pho/FileManagement/RDFManager.html#M000023">new (Pho::FileManagement::RDFManager)</a><br />
111
+ <a href="classes/Pho/FileManagement/AbstractFileManager.html#M000026">new (Pho::FileManagement::AbstractFileManager)</a><br />
112
+ <a href="classes/Pho/FieldPredicateMap.html#M000090">new (Pho::FieldPredicateMap)</a><br />
113
+ <a href="classes/Pho/Snapshot.html#M000177">new (Pho::Snapshot)</a><br />
114
+ <a href="classes/Pho/DatatypeProperty.html#M000138">new (Pho::DatatypeProperty)</a><br />
115
+ <a href="classes/Pho/Update/Statement.html#M000057">new (Pho::Update::Statement)</a><br />
116
+ <a href="classes/Pho/Update/Changeset.html#M000058">new (Pho::Update::Changeset)</a><br />
117
+ <a href="classes/Pho/FileManagement/FileManager.html#M000036">new (Pho::FileManagement::FileManager)</a><br />
118
+ <a href="classes/Pho/Job.html#M000180">new (Pho::Job)</a><br />
119
+ <a href="classes/Pho/FileManagement/AbstractFileManager.html#M000030">new_files (Pho::FileManagement::AbstractFileManager)</a><br />
120
+ <a href="classes/Pho/ResourceHash/SetAlgebra.html#M000083">object_in_array? (Pho::ResourceHash::SetAlgebra)</a><br />
121
+ <a href="classes/Pho/Snapshot.html#M000176">parse (Pho::Snapshot)</a><br />
122
+ <a href="classes/Pho/Job.html#M000182">parse (Pho::Job)</a><br />
123
+ <a href="classes/Pho/Facet/Results.html#M000070">parse (Pho::Facet::Results)</a><br />
124
+ <a href="classes/Pho/ResourceHash/Converter.html#M000080">parse (Pho::ResourceHash::Converter)</a><br />
125
+ <a href="classes/Pho/ResourceHash/Converter.html#M000076">parse_json (Pho::ResourceHash::Converter)</a><br />
126
+ <a href="classes/Pho/ResourceHash/Converter.html#M000078">parse_ntriples (Pho::ResourceHash::Converter)</a><br />
127
+ <a href="classes/Pho/RDF/Parser.html#M000084">parse_ntriples (Pho::RDF::Parser)</a><br />
128
+ <a href="classes/Pho/RDF/Parser.html#M000085">parse_ntriples_from_string (Pho::RDF::Parser)</a><br />
129
+ <a href="classes/Pho/ResourceHash/Converter.html#M000077">parse_rdfxml (Pho::ResourceHash::Converter)</a><br />
130
+ <a href="classes/Pho/ResourceHash/Converter.html#M000079">parse_turtle (Pho::ResourceHash::Converter)</a><br />
131
+ <a href="classes/Pho/Job.html#M000183">progress_updates (Pho::Job)</a><br />
132
+ <a href="classes/Pho/Store.html#M000172">put_field_predicate_map (Pho::Store)</a><br />
133
+ <a href="classes/Pho/Store.html#M000174">put_query_profile (Pho::Store)</a><br />
125
134
  <a href="classes/Pho/Sparql/SparqlClient.html#M000005">query (Pho::Sparql::SparqlClient)</a><br />
126
- <a href="classes/Pho/Snapshot.html#M000155">read_from_store (Pho::Snapshot)</a><br />
127
- <a href="classes/Pho/QueryProfile.html#M000100">read_from_store (Pho::QueryProfile)</a><br />
128
- <a href="classes/Pho/Facet/Results.html#M000066">read_from_store (Pho::Facet::Results)</a><br />
129
- <a href="classes/Pho/Status.html#M000097">read_from_store (Pho::Status)</a><br />
130
- <a href="classes/Pho/Jobs.html#M000110">read_from_store (Pho::Jobs)</a><br />
131
- <a href="classes/Pho/Job.html#M000161">read_from_store (Pho::Job)</a><br />
132
- <a href="classes/Pho/FieldPredicateMap.html#M000081">read_from_store (Pho::FieldPredicateMap)</a><br />
133
- <a href="classes/Pho/Snapshot.html#M000158">read_md5 (Pho::Snapshot)</a><br />
134
- <a href="classes/Pho/Status.html#M000098">readable? (Pho::Status)</a><br />
135
- <a href="classes/Pho/Store.html#M000142">record_etags (Pho::Store)</a><br />
136
- <a href="classes/Pho/Update/Changeset.html#M000061">removals (Pho::Update::Changeset)</a><br />
137
- <a href="classes/Pho/QueryProfile.html#M000106">remove (Pho::QueryProfile)</a><br />
138
- <a href="classes/Pho/FieldPredicateMap.html#M000091">remove (Pho::FieldPredicateMap)</a><br />
139
- <a href="classes/Pho/QueryProfile.html#M000105">remove_by_name (Pho::QueryProfile)</a><br />
140
- <a href="classes/Pho/FieldPredicateMap.html#M000092">remove_by_name (Pho::FieldPredicateMap)</a><br />
141
- <a href="classes/Pho/FieldPredicateMap.html#M000093">remove_by_uri (Pho::FieldPredicateMap)</a><br />
142
- <a href="classes/Pho/FileManagement/AbstractFileManager.html#M000028">reset (Pho::FileManagement::AbstractFileManager)</a><br />
143
- <a href="classes/Pho/Sparql/SparqlHelper.html#M000012">result_to_query_binding (Pho::Sparql::SparqlHelper)</a><br />
144
- <a href="classes/Pho/Sparql/SparqlHelper.html#M000013">results_to_query_bindings (Pho::Sparql::SparqlHelper)</a><br />
145
- <a href="classes/Pho/FileManagement/AbstractFileManager.html#M000027">retry_failures (Pho::FileManagement::AbstractFileManager)</a><br />
146
- <a href="classes/Pho/Job.html#M000167">running? (Pho::Job)</a><br />
147
- <a href="classes/Pho/Etags.html#M000173">save (Pho::Etags)</a><br />
148
- <a href="classes/Pho/Store.html#M000136">search (Pho::Store)</a><br />
149
- <a href="classes/Pho/Sparql/SparqlClient.html#M000010">select (Pho::Sparql::SparqlClient)</a><br />
150
- <a href="classes/Pho/Sparql/SparqlHelper.html#M000014">select (Pho::Sparql::SparqlHelper)</a><br />
151
- <a href="classes/Pho/Sparql/SparqlHelper.html#M000017">select_single_value (Pho::Sparql::SparqlHelper)</a><br />
152
- <a href="classes/Pho/Sparql/SparqlHelper.html#M000016">select_values (Pho::Sparql::SparqlHelper)</a><br />
153
- <a href="classes/Pho/ResourceHash/Converter.html#M000078">serialize_json (Pho::ResourceHash::Converter)</a><br />
154
- <a href="classes/Pho/Store.html#M000123">set_credentials (Pho::Store)</a><br />
155
- <a href="classes/Pho/Store.html#M000135">sparql (Pho::Store)</a><br />
156
- <a href="classes/Pho/Store.html#M000133">sparql_ask (Pho::Store)</a><br />
157
- <a href="classes/Pho/Store.html#M000130">sparql_client (Pho::Store)</a><br />
158
- <a href="classes/Pho/Store.html#M000132">sparql_construct (Pho::Store)</a><br />
159
- <a href="classes/Pho/Store.html#M000131">sparql_describe (Pho::Store)</a><br />
160
- <a href="classes/Pho/Store.html#M000134">sparql_select (Pho::Store)</a><br />
135
+ <a href="classes/Pho/Job.html#M000181">read_from_store (Pho::Job)</a><br />
136
+ <a href="classes/Pho/FieldPredicateMap.html#M000088">read_from_store (Pho::FieldPredicateMap)</a><br />
137
+ <a href="classes/Pho/Snapshot.html#M000175">read_from_store (Pho::Snapshot)</a><br />
138
+ <a href="classes/Pho/Status.html#M000104">read_from_store (Pho::Status)</a><br />
139
+ <a href="classes/Pho/Jobs.html#M000128">read_from_store (Pho::Jobs)</a><br />
140
+ <a href="classes/Pho/Facet/Results.html#M000069">read_from_store (Pho::Facet::Results)</a><br />
141
+ <a href="classes/Pho/QueryProfile.html#M000118">read_from_store (Pho::QueryProfile)</a><br />
142
+ <a href="classes/Pho/Snapshot.html#M000178">read_md5 (Pho::Snapshot)</a><br />
143
+ <a href="classes/Pho/Status.html#M000105">readable? (Pho::Status)</a><br />
144
+ <a href="classes/Pho/Store.html#M000162">record_etags (Pho::Store)</a><br />
145
+ <a href="classes/Pho/CommandLine.html#M000111">reindex (Pho::CommandLine)</a><br />
146
+ <a href="classes/Pho/Update/Changeset.html#M000064">removals (Pho::Update::Changeset)</a><br />
147
+ <a href="classes/Pho/QueryProfile.html#M000124">remove (Pho::QueryProfile)</a><br />
148
+ <a href="classes/Pho/FieldPredicateMap.html#M000098">remove (Pho::FieldPredicateMap)</a><br />
149
+ <a href="classes/Pho/QueryProfile.html#M000123">remove_by_name (Pho::QueryProfile)</a><br />
150
+ <a href="classes/Pho/FieldPredicateMap.html#M000099">remove_by_name (Pho::FieldPredicateMap)</a><br />
151
+ <a href="classes/Pho/FieldPredicateMap.html#M000100">remove_by_uri (Pho::FieldPredicateMap)</a><br />
152
+ <a href="classes/Pho/CommandLine.html#M000112">reset (Pho::CommandLine)</a><br />
153
+ <a href="classes/Pho/FileManagement/AbstractFileManager.html#M000029">reset (Pho::FileManagement::AbstractFileManager)</a><br />
154
+ <a href="classes/Pho/CommandLine.html#M000113">restore (Pho::CommandLine)</a><br />
155
+ <a href="classes/Pho/Sparql/SparqlHelper.html#M000013">result_to_query_binding (Pho::Sparql::SparqlHelper)</a><br />
156
+ <a href="classes/Pho/Sparql/SparqlHelper.html#M000014">results_to_query_bindings (Pho::Sparql::SparqlHelper)</a><br />
157
+ <a href="classes/Pho/FileManagement/AbstractFileManager.html#M000028">retry_failures (Pho::FileManagement::AbstractFileManager)</a><br />
158
+ <a href="classes/Pho/Job.html#M000187">running? (Pho::Job)</a><br />
159
+ <a href="classes/Pho/Etags.html#M000193">save (Pho::Etags)</a><br />
160
+ <a href="classes/Pho/Store.html#M000156">search (Pho::Store)</a><br />
161
+ <a href="classes/Pho/Sparql/SparqlHelper.html#M000015">select (Pho::Sparql::SparqlHelper)</a><br />
162
+ <a href="classes/Pho/Sparql/SparqlClient.html#M000011">select (Pho::Sparql::SparqlClient)</a><br />
163
+ <a href="classes/Pho/Sparql/SparqlHelper.html#M000018">select_single_value (Pho::Sparql::SparqlHelper)</a><br />
164
+ <a href="classes/Pho/Sparql/SparqlHelper.html#M000017">select_values (Pho::Sparql::SparqlHelper)</a><br />
165
+ <a href="classes/Pho/ResourceHash/Converter.html#M000081">serialize_json (Pho::ResourceHash::Converter)</a><br />
166
+ <a href="classes/Pho/Store.html#M000143">set_credentials (Pho::Store)</a><br />
167
+ <a href="classes/Pho/CommandLine.html#M000110">snapshot (Pho::CommandLine)</a><br />
168
+ <a href="classes/Pho/CommandLine.html#M000115">sparql (Pho::CommandLine)</a><br />
169
+ <a href="classes/Pho/Store.html#M000155">sparql (Pho::Store)</a><br />
170
+ <a href="classes/Pho/Store.html#M000153">sparql_ask (Pho::Store)</a><br />
171
+ <a href="classes/Pho/Store.html#M000150">sparql_client (Pho::Store)</a><br />
172
+ <a href="classes/Pho/Store.html#M000152">sparql_construct (Pho::Store)</a><br />
173
+ <a href="classes/Pho/Store.html#M000151">sparql_describe (Pho::Store)</a><br />
174
+ <a href="classes/Pho/Store.html#M000154">sparql_select (Pho::Store)</a><br />
161
175
  <a href="classes/String.html#M000001">start_with? (String)</a><br />
162
- <a href="classes/Pho/Job.html#M000164">started? (Pho::Job)</a><br />
163
- <a href="classes/Pho/FileManagement/AbstractFileManager.html#M000026">store (Pho::FileManagement::AbstractFileManager)</a><br />
164
- <a href="classes/Pho/Store.html#M000125">store_data (Pho::Store)</a><br />
165
- <a href="classes/Pho/FileManagement/FileManager.html#M000037">store_file (Pho::FileManagement::FileManager)</a><br />
166
- <a href="classes/Pho/FileManagement/RDFManager.html#M000024">store_file (Pho::FileManagement::RDFManager)</a><br />
167
- <a href="classes/Pho/Store.html#M000126">store_file (Pho::Store)</a><br />
168
- <a href="classes/Pho/Store.html#M000127">store_url (Pho::Store)</a><br />
169
- <a href="classes/Pho/Update/Changeset.html#M000064">submit (Pho::Update::Changeset)</a><br />
170
- <a href="classes/Pho/Update/Changesets.html#M000050">submit_all (Pho::Update::Changesets)</a><br />
171
- <a href="classes/Pho/Store.html#M000129">submit_changeset (Pho::Store)</a><br />
172
- <a href="classes/Pho/Jobs.html#M000115">submit_job (Pho::Jobs)</a><br />
173
- <a href="classes/Pho/Store.html#M000148">submit_job (Pho::Store)</a><br />
174
- <a href="classes/Pho/Jobs.html#M000112">submit_reindex (Pho::Jobs)</a><br />
175
- <a href="classes/Pho/Jobs.html#M000111">submit_reset (Pho::Jobs)</a><br />
176
- <a href="classes/Pho/Jobs.html#M000114">submit_restore (Pho::Jobs)</a><br />
177
- <a href="classes/Pho/Jobs.html#M000113">submit_snapshot (Pho::Jobs)</a><br />
178
- <a href="classes/Pho/FileManagement/AbstractFileManager.html#M000030">successes (Pho::FileManagement::AbstractFileManager)</a><br />
179
- <a href="classes/Pho/Job.html#M000166">successful? (Pho::Job)</a><br />
180
- <a href="classes/Pho/FileManagement/AbstractFileManager.html#M000031">summary (Pho::FileManagement::AbstractFileManager)</a><br />
181
- <a href="classes/Pho/DatatypeProperty.html#M000121">to_rdf (Pho::DatatypeProperty)</a><br />
182
- <a href="classes/Pho/Update/Changeset.html#M000057">to_rdf (Pho::Update::Changeset)</a><br />
183
- <a href="classes/Pho/FieldPredicateMap.html#M000094">to_rdf (Pho::FieldPredicateMap)</a><br />
184
- <a href="classes/Pho/Update/Statement.html#M000053">to_rdf (Pho::Update::Statement)</a><br />
185
- <a href="classes/Pho/FieldWeighting.html#M000171">to_rdf (Pho::FieldWeighting)</a><br />
186
- <a href="classes/Pho/QueryProfile.html#M000108">to_rdf (Pho::QueryProfile)</a><br />
187
- <a href="classes/Pho/Update/Changeset.html#M000056">to_s (Pho::Update::Changeset)</a><br />
188
- <a href="classes/Pho/FieldPredicateMap.html#M000095">upload (Pho::FieldPredicateMap)</a><br />
189
- <a href="classes/Pho/QueryProfile.html#M000109">upload (Pho::QueryProfile)</a><br />
190
- <a href="classes/Pho/Store.html#M000143">upload_item (Pho::Store)</a><br />
191
- <a href="classes/Pho/Jobs.html#M000118">wait_for (Pho::Jobs)</a><br />
192
- <a href="classes/Pho/Jobs.html#M000117">wait_for_submitted (Pho::Jobs)</a><br />
193
- <a href="classes/Pho/Job.html#M000169">with_each (Pho::Job)</a><br />
194
- <a href="classes/Pho/Job.html#M000168">with_first (Pho::Job)</a><br />
195
- <a href="classes/Pho/Update/LiteralStatement.html#M000040">write_object (Pho::Update::LiteralStatement)</a><br />
196
- <a href="classes/Pho/Update/ResourceStatement.html#M000048">write_object (Pho::Update::ResourceStatement)</a><br />
197
- <a href="classes/Pho/Update/ResourceStatement.html#M000047">write_subject (Pho::Update::ResourceStatement)</a><br />
198
- <a href="classes/Pho/Status.html#M000099">writeable? (Pho::Status)</a><br />
199
- <a href="classes/Pho/Jobs.html#M000119">yield_job_update (Pho::Jobs)</a><br />
176
+ <a href="classes/Pho/Job.html#M000184">started? (Pho::Job)</a><br />
177
+ <a href="classes/Pho/CommandLine.html#M000108">status (Pho::CommandLine)</a><br />
178
+ <a href="classes/Pho/CommandLine.html#M000116">store (Pho::CommandLine)</a><br />
179
+ <a href="classes/Pho/FileManagement/AbstractFileManager.html#M000027">store (Pho::FileManagement::AbstractFileManager)</a><br />
180
+ <a href="classes/Pho/Store.html#M000145">store_data (Pho::Store)</a><br />
181
+ <a href="classes/Pho/FileManagement/FileManager.html#M000039">store_file (Pho::FileManagement::FileManager)</a><br />
182
+ <a href="classes/Pho/FileManagement/RDFManager.html#M000025">store_file (Pho::FileManagement::RDFManager)</a><br />
183
+ <a href="classes/Pho/Store.html#M000146">store_file (Pho::Store)</a><br />
184
+ <a href="classes/Pho/RDF/Parser.html#M000086">store_ntriples (Pho::RDF::Parser)</a><br />
185
+ <a href="classes/Pho/RDF/Parser.html#M000087">store_ntriples_from_string (Pho::RDF::Parser)</a><br />
186
+ <a href="classes/Pho/Store.html#M000147">store_url (Pho::Store)</a><br />
187
+ <a href="classes/Pho/Update/Changeset.html#M000067">submit (Pho::Update::Changeset)</a><br />
188
+ <a href="classes/Pho/Update/Changesets.html#M000053">submit_all (Pho::Update::Changesets)</a><br />
189
+ <a href="classes/Pho/Store.html#M000149">submit_changeset (Pho::Store)</a><br />
190
+ <a href="classes/Pho/Store.html#M000168">submit_job (Pho::Store)</a><br />
191
+ <a href="classes/Pho/Jobs.html#M000133">submit_job (Pho::Jobs)</a><br />
192
+ <a href="classes/Pho/Jobs.html#M000130">submit_reindex (Pho::Jobs)</a><br />
193
+ <a href="classes/Pho/Jobs.html#M000129">submit_reset (Pho::Jobs)</a><br />
194
+ <a href="classes/Pho/Jobs.html#M000132">submit_restore (Pho::Jobs)</a><br />
195
+ <a href="classes/Pho/Jobs.html#M000131">submit_snapshot (Pho::Jobs)</a><br />
196
+ <a href="classes/Pho/FileManagement/AbstractFileManager.html#M000032">successes (Pho::FileManagement::AbstractFileManager)</a><br />
197
+ <a href="classes/Pho/Job.html#M000186">successful? (Pho::Job)</a><br />
198
+ <a href="classes/Pho/FileManagement/AbstractFileManager.html#M000033">summary (Pho::FileManagement::AbstractFileManager)</a><br />
199
+ <a href="classes/Pho/DatatypeProperty.html#M000139">to_rdf (Pho::DatatypeProperty)</a><br />
200
+ <a href="classes/Pho/FieldWeighting.html#M000191">to_rdf (Pho::FieldWeighting)</a><br />
201
+ <a href="classes/Pho/Update/Statement.html#M000056">to_rdf (Pho::Update::Statement)</a><br />
202
+ <a href="classes/Pho/QueryProfile.html#M000126">to_rdf (Pho::QueryProfile)</a><br />
203
+ <a href="classes/Pho/Update/Changeset.html#M000060">to_rdf (Pho::Update::Changeset)</a><br />
204
+ <a href="classes/Pho/FieldPredicateMap.html#M000101">to_rdf (Pho::FieldPredicateMap)</a><br />
205
+ <a href="classes/Pho/Update/Changeset.html#M000059">to_s (Pho::Update::Changeset)</a><br />
206
+ <a href="classes/Pho/Update/ChangesetHelper.html#M000040">update_literal (Pho::Update::ChangesetHelper)</a><br />
207
+ <a href="classes/Pho/CommandLine.html#M000117">upload (Pho::CommandLine)</a><br />
208
+ <a href="classes/Pho/QueryProfile.html#M000127">upload (Pho::QueryProfile)</a><br />
209
+ <a href="classes/Pho/FieldPredicateMap.html#M000102">upload (Pho::FieldPredicateMap)</a><br />
210
+ <a href="classes/Pho/Store.html#M000163">upload_item (Pho::Store)</a><br />
211
+ <a href="classes/Pho/Jobs.html#M000136">wait_for (Pho::Jobs)</a><br />
212
+ <a href="classes/Pho/Jobs.html#M000135">wait_for_submitted (Pho::Jobs)</a><br />
213
+ <a href="classes/Pho/Job.html#M000189">with_each (Pho::Job)</a><br />
214
+ <a href="classes/Pho/Job.html#M000188">with_first (Pho::Job)</a><br />
215
+ <a href="classes/Pho/Update/LiteralStatement.html#M000043">write_object (Pho::Update::LiteralStatement)</a><br />
216
+ <a href="classes/Pho/Update/ResourceStatement.html#M000051">write_object (Pho::Update::ResourceStatement)</a><br />
217
+ <a href="classes/Pho/Update/ResourceStatement.html#M000050">write_subject (Pho::Update::ResourceStatement)</a><br />
218
+ <a href="classes/Pho/Status.html#M000106">writeable? (Pho::Status)</a><br />
219
+ <a href="classes/Pho/Jobs.html#M000137">yield_job_update (Pho::Jobs)</a><br />
200
220
  </div>
201
221
  </div>
202
222
  </body>
@@ -0,0 +1,7 @@
1
+ Charles Robert Darwin FRS (12 February 1809 – 19 April 1882) was an English naturalist[I] who realised and presented compelling evidence that all species of life have evolved over time from common ancestors, through the process he called natural selection.[1] The fact that evolution occurs became accepted by the scientific community and much of the general public in his lifetime, while his theory of natural selection came to be widely seen as the primary explanation of the process of evolution in the 1930s,[2] and now forms the basis of modern evolutionary theory. In modified form, Darwin’s scientific discovery is the unifying theory of the life sciences, providing logical explanation for the diversity of life.[3]
2
+
3
+ At Edinburgh University Darwin neglected medical studies to investigate marine invertebrates, then the University of Cambridge encouraged a passion for natural science.[4] His five-year voyage on HMS Beagle established him as an eminent geologist whose observations and theories supported Charles Lyell’s uniformitarian ideas, and publication of his journal of the voyage made him famous as a popular author. Puzzled by the geographical distribution of wildlife and fossils he collected on the voyage, Darwin investigated the transmutation of species and conceived his theory of natural selection in 1838.[5] Although he discussed his ideas with several naturalists, he needed time for extensive research and his geological work had priority.[6] He was writing up his theory in 1858 when Alfred Russel Wallace sent him an essay which described the same idea, prompting immediate joint publication of both of their theories.[7]
4
+
5
+ His 1859 book On the Origin of Species established evolutionary descent with modification as the dominant scientific explanation of diversification in nature.[2] He examined human evolution and sexual selection in The Descent of Man, and Selection in Relation to Sex, followed by The Expression of the Emotions in Man and Animals. His research on plants was published in a series of books, and in his final book, he examined earthworms and their effect on soil.[8]
6
+
7
+ In recognition of Darwin’s pre-eminence, he was one of only five 19th-century UK non-royal personages to be honoured by a state funeral,[9] and was buried in Westminster Abbey, close to John Herschel and Isaac Newton.[10]
@@ -0,0 +1,17 @@
1
+ # Use OpenCalais to find entities in a document specified on the command-line, then dump the result to the command-line
2
+ #
3
+ # Set the following environment variables:
4
+ #
5
+ # CALAIS_KEY:: Calais license key
6
+ #
7
+ #sudo apt-get install libcurl3-dev
8
+ #sudo gem install curb
9
+ #sudo gem install calais
10
+ #
11
+ require 'rubygems'
12
+ require 'pho'
13
+ require 'calais'
14
+
15
+ content = File.new(ARGV[0]).read()
16
+ resp = Calais.enlighten( :content => content, :content_type => :text, :license_id => ENV["CALAIS_KEY"])
17
+ puts resp
@@ -0,0 +1,23 @@
1
+ # Use OpenCalais to find entities in a document specified on the command-line, then store the results
2
+ # in a Platform store
3
+ #
4
+ # Set the following environment variables:
5
+ #
6
+ # TALIS_USER:: username on Platform
7
+ # TALIS_PASS:: password
8
+ # TALIS_STORE:: store in which data will be stored
9
+ # CALAIS_KEY:: Calais license key
10
+ #
11
+ #sudo apt-get install libcurl3-dev
12
+ #sudo gem install curb
13
+ #sudo gem install calais
14
+ #
15
+ require 'rubygems'
16
+ require 'pho'
17
+ require 'calais'
18
+
19
+ store = Pho::Store.new(ENV["TALIS_STORE"], ENV["TALIS_USER"], ENV["TALIS_PASS"])
20
+ content = File.new(ARGV[0]).read()
21
+ resp = Calais.enlighten( :content => content, :content_type => :text, :license_id => ENV["CALAIS_KEY"])
22
+ resp = store.store_data(resp)
23
+ puts resp.status
@@ -0,0 +1,25 @@
1
+ <!--Use of the Calais Web Service is governed by the Terms of Service located at http://www.opencalais.com. By using this service or the results of the service you agree to these terms of service.--><!--Relations: Quotation
2
+
3
+ Country: United Kingdom
4
+ Facility: Westminster Abbey
5
+ Organization: University of Cambridge
6
+ Person: Alfred Russel Wallace, Charles Lyell, Charles Robert Darwin, Isaac Newton, John Herschel
7
+ Position: author , eminent geologist --><rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:c="http://s.opencalais.com/1/pred/"><rdf:Description c:calaisRequestID="71b9e1af-f3eb-41bf-a340-a437dbf87f2c" c:docRDFaccessible="true" c:id="http://id.opencalais.com/nmpL0SwIWrK-PRpN0K65Hg" rdf:about="http://d.opencalais.com/dochash-1/1b5f8fa9-5934-35c9-a314-cb8f0e444af2"><rdf:type rdf:resource="http://s.opencalais.com/1/type/sys/DocInfo"/><c:document><![CDATA[<Document><Date>2009-06-08</Date><Body>Charles Robert Darwin FRS (12 February 1809 – 19 April 1882) was an English naturalist[I] who realised and presented compelling evidence that all species of life have evolved over time from common ancestors, through the process he called natural selection.[1] The fact that evolution occurs became accepted by the scientific community and much of the general public in his lifetime, while his theory of natural selection came to be widely seen as the primary explanation of the process of evolution in the 1930s,[2] and now forms the basis of modern evolutionary theory. In modified form, Darwin's scientific discovery is the unifying theory of the life sciences, providing logical explanation for the diversity of life.[3]
8
+
9
+ At Edinburgh University Darwin neglected medical studies to investigate marine invertebrates, then the University of Cambridge encouraged a passion for natural science.[4] His five-year voyage on HMS Beagle established him as an eminent geologist whose observations and theories supported Charles Lyell's uniformitarian ideas, and publication of his journal of the voyage made him famous as a popular author. Puzzled by the geographical distribution of wildlife and fossils he collected on the voyage, Darwin investigated the transmutation of species and conceived his theory of natural selection in 1838.[5] Although he discussed his ideas with several naturalists, he needed time for extensive research and his geological work had priority.[6] He was writing up his theory in 1858 when Alfred Russel Wallace sent him an essay which described the same idea, prompting immediate joint publication of both of their theories.[7]
10
+
11
+ His 1859 book On the Origin of Species established evolutionary descent with modification as the dominant scientific explanation of diversification in nature.[2] He examined human evolution and sexual selection in The Descent of Man, and Selection in Relation to Sex, followed by The Expression of the Emotions in Man and Animals. His research on plants was published in a series of books, and in his final book, he examined earthworms and their effect on soil.[8]
12
+
13
+ In recognition of Darwin's pre-eminence, he was one of only five 19th-century UK non-royal personages to be honoured by a state funeral,[9] and was buried in Westminster Abbey, close to John Herschel and Isaac Newton.[10]</Body></Document>]]></c:document><c:docTitle/><c:docDate>2009-06-08 00:00:00</c:docDate></rdf:Description><rdf:Description c:contentType="text/txt" c:emVer="UserVocabulariesIM" c:langIdVer="DefaultLangId" c:language="English" c:processingVer="CalaisJob01" c:submissionDate="2009-06-08 04:13:56.796" rdf:about="http://d.opencalais.com/dochash-1/1b5f8fa9-5934-35c9-a314-cb8f0e444af2/meta"><rdf:type rdf:resource="http://s.opencalais.com/1/type/sys/DocInfoMeta"/><c:docId rdf:resource="http://d.opencalais.com/dochash-1/1b5f8fa9-5934-35c9-a314-cb8f0e444af2"/><c:submitterCode>d96ba7da-8ca2-83ae-965a-4f32843d8132</c:submitterCode><c:signature>digestalg-1|cF5BkPZ7zvC3zEcNyK+maFA1U/I=|iLdlDg+1/imY5vENkMO35cfgP3FIxZuP+qPY3O7Lgd4ILDznYus4kg==</c:signature></rdf:Description><rdf:Description rdf:about="http://d.opencalais.com/dochash-1/1b5f8fa9-5934-35c9-a314-cb8f0e444af2/lid/DefaultLangId"><rdf:type rdf:resource="http://s.opencalais.com/1/type/lid/DefaultLangId"/><c:docId rdf:resource="http://d.opencalais.com/dochash-1/1b5f8fa9-5934-35c9-a314-cb8f0e444af2"/><c:lang rdf:resource="http://d.opencalais.com/lid/DefaultLangId/English"/></rdf:Description><rdf:Description rdf:about="http://d.opencalais.com/dochash-1/1b5f8fa9-5934-35c9-a314-cb8f0e444af2/cat/1"><rdf:type rdf:resource="http://s.opencalais.com/1/type/cat/DocCat"/><c:docId rdf:resource="http://d.opencalais.com/dochash-1/1b5f8fa9-5934-35c9-a314-cb8f0e444af2"/><c:category rdf:resource="http://d.opencalais.com/cat/Calais/Other"/><c:classifierName>Calais</c:classifierName><c:categoryName>Other</c:categoryName></rdf:Description><rdf:Description rdf:about="http://d.opencalais.com/pershash-1/3bf7283f-5cc2-3020-8ea3-5e9d791fb360"><rdf:type rdf:resource="http://s.opencalais.com/1/type/em/e/Person"/><c:name>Isaac Newton</c:name><c:persontype>N/A</c:persontype><c:nationality>N/A</c:nationality></rdf:Description><rdf:Description rdf:about="http://d.opencalais.com/dochash-1/1b5f8fa9-5934-35c9-a314-cb8f0e444af2/Instance/1"><rdf:type rdf:resource="http://s.opencalais.com/1/type/sys/InstanceInfo"/><c:docId rdf:resource="http://d.opencalais.com/dochash-1/1b5f8fa9-5934-35c9-a314-cb8f0e444af2"/><c:subject rdf:resource="http://d.opencalais.com/pershash-1/3bf7283f-5cc2-3020-8ea3-5e9d791fb360"/><!--Person: Isaac Newton; --><c:detection>[ in Westminster Abbey, close to John Herschel and ]Isaac Newton[.[10]&lt;/Body&gt;&lt;/Document&gt;]</c:detection><c:prefix> in Westminster Abbey, close to John Herschel and </c:prefix><c:exact>Isaac Newton</c:exact><c:suffix>.[10]&lt;/Body&gt;&lt;/Document&gt;</c:suffix><c:offset>2362</c:offset><c:length>12</c:length></rdf:Description><rdf:Description rdf:about="http://d.opencalais.com/dochash-1/1b5f8fa9-5934-35c9-a314-cb8f0e444af2/Relevance/1"><rdf:type rdf:resource="http://s.opencalais.com/1/type/sys/RelevanceInfo"/><c:docId rdf:resource="http://d.opencalais.com/dochash-1/1b5f8fa9-5934-35c9-a314-cb8f0e444af2"/><c:subject rdf:resource="http://d.opencalais.com/pershash-1/3bf7283f-5cc2-3020-8ea3-5e9d791fb360"/><c:relevance>0.083</c:relevance></rdf:Description><rdf:Description rdf:about="http://d.opencalais.com/pershash-1/33922212-55ca-361e-a5c1-f262f5c4ca59"><rdf:type rdf:resource="http://s.opencalais.com/1/type/em/e/Person"/><c:name>Charles Lyell</c:name><c:persontype>N/A</c:persontype><c:nationality>N/A</c:nationality></rdf:Description><rdf:Description rdf:about="http://d.opencalais.com/dochash-1/1b5f8fa9-5934-35c9-a314-cb8f0e444af2/Instance/2"><rdf:type rdf:resource="http://s.opencalais.com/1/type/sys/InstanceInfo"/><c:docId rdf:resource="http://d.opencalais.com/dochash-1/1b5f8fa9-5934-35c9-a314-cb8f0e444af2"/><c:subject rdf:resource="http://d.opencalais.com/pershash-1/33922212-55ca-361e-a5c1-f262f5c4ca59"/><!--Person: Charles Lyell; --><c:detection>[whose observations and theories supported ]Charles Lyell['s uniformitarian ideas, and publication of his]</c:detection><c:prefix>whose observations and theories supported </c:prefix><c:exact>Charles Lyell</c:exact><c:suffix>'s uniformitarian ideas, and publication of his</c:suffix><c:offset>1053</c:offset><c:length>13</c:length></rdf:Description><rdf:Description rdf:about="http://d.opencalais.com/dochash-1/1b5f8fa9-5934-35c9-a314-cb8f0e444af2/Instance/3"><rdf:type rdf:resource="http://s.opencalais.com/1/type/sys/InstanceInfo"/><c:docId rdf:resource="http://d.opencalais.com/dochash-1/1b5f8fa9-5934-35c9-a314-cb8f0e444af2"/><c:subject rdf:resource="http://d.opencalais.com/pershash-1/33922212-55ca-361e-a5c1-f262f5c4ca59"/><!--Person: Charles Lyell; --><c:detection>[ Lyell's uniformitarian ideas, and publication of ]his[ journal of the voyage made him famous as a]</c:detection><c:prefix> Lyell's uniformitarian ideas, and publication of </c:prefix><c:exact>his</c:exact><c:suffix> journal of the voyage made him famous as a</c:suffix><c:offset>1110</c:offset><c:length>3</c:length></rdf:Description><rdf:Description rdf:about="http://d.opencalais.com/dochash-1/1b5f8fa9-5934-35c9-a314-cb8f0e444af2/Instance/4"><rdf:type rdf:resource="http://s.opencalais.com/1/type/sys/InstanceInfo"/><c:docId rdf:resource="http://d.opencalais.com/dochash-1/1b5f8fa9-5934-35c9-a314-cb8f0e444af2"/><c:subject rdf:resource="http://d.opencalais.com/pershash-1/33922212-55ca-361e-a5c1-f262f5c4ca59"/><!--Person: Charles Lyell; --><c:detection>[publication of his journal of the voyage made ]him[ famous as a popular author. Puzzled by the]</c:detection><c:prefix>publication of his journal of the voyage made </c:prefix><c:exact>him</c:exact><c:suffix> famous as a popular author. Puzzled by the</c:suffix><c:offset>1141</c:offset><c:length>3</c:length></rdf:Description><rdf:Description rdf:about="http://d.opencalais.com/dochash-1/1b5f8fa9-5934-35c9-a314-cb8f0e444af2/Instance/5"><rdf:type rdf:resource="http://s.opencalais.com/1/type/sys/InstanceInfo"/><c:docId rdf:resource="http://d.opencalais.com/dochash-1/1b5f8fa9-5934-35c9-a314-cb8f0e444af2"/><c:subject rdf:resource="http://d.opencalais.com/pershash-1/33922212-55ca-361e-a5c1-f262f5c4ca59"/><!--Person: Charles Lyell; --><c:detection>[distribution of wildlife and fossils ]he[ collected on the voyage, Darwin investigated the]</c:detection><c:prefix>distribution of wildlife and fossils </c:prefix><c:exact>he</c:exact><c:suffix> collected on the voyage, Darwin investigated the</c:suffix><c:offset>1238</c:offset><c:length>2</c:length></rdf:Description><rdf:Description rdf:about="http://d.opencalais.com/dochash-1/1b5f8fa9-5934-35c9-a314-cb8f0e444af2/Relevance/2"><rdf:type rdf:resource="http://s.opencalais.com/1/type/sys/RelevanceInfo"/><c:docId rdf:resource="http://d.opencalais.com/dochash-1/1b5f8fa9-5934-35c9-a314-cb8f0e444af2"/><c:subject rdf:resource="http://d.opencalais.com/pershash-1/33922212-55ca-361e-a5c1-f262f5c4ca59"/><c:relevance>0.330</c:relevance></rdf:Description><rdf:Description rdf:about="http://d.opencalais.com/genericHasher-1/e911da6b-56e4-3544-9357-5d79d01c1538"><rdf:type rdf:resource="http://s.opencalais.com/1/type/em/e/Position"/><c:name>author </c:name></rdf:Description><rdf:Description rdf:about="http://d.opencalais.com/dochash-1/1b5f8fa9-5934-35c9-a314-cb8f0e444af2/Instance/6"><rdf:type rdf:resource="http://s.opencalais.com/1/type/sys/InstanceInfo"/><c:docId rdf:resource="http://d.opencalais.com/dochash-1/1b5f8fa9-5934-35c9-a314-cb8f0e444af2"/><c:subject rdf:resource="http://d.opencalais.com/genericHasher-1/e911da6b-56e4-3544-9357-5d79d01c1538"/><!--Position: author ; --><c:detection>[of the voyage made him famous as a popular ]author[. Puzzled by the geographical distribution of]</c:detection><c:prefix>of the voyage made him famous as a popular </c:prefix><c:exact>author</c:exact><c:suffix>. Puzzled by the geographical distribution of</c:suffix><c:offset>1165</c:offset><c:length>6</c:length></rdf:Description><rdf:Description rdf:about="http://d.opencalais.com/dochash-1/1b5f8fa9-5934-35c9-a314-cb8f0e444af2/Relevance/3"><rdf:type rdf:resource="http://s.opencalais.com/1/type/sys/RelevanceInfo"/><c:docId rdf:resource="http://d.opencalais.com/dochash-1/1b5f8fa9-5934-35c9-a314-cb8f0e444af2"/><c:subject rdf:resource="http://d.opencalais.com/genericHasher-1/e911da6b-56e4-3544-9357-5d79d01c1538"/><c:relevance>0.273</c:relevance></rdf:Description><rdf:Description rdf:about="http://d.opencalais.com/genericHasher-1/cc88b155-205c-3676-a151-d45f473f0b16"><rdf:type rdf:resource="http://s.opencalais.com/1/type/em/e/Country"/><c:name>United Kingdom</c:name></rdf:Description><rdf:Description rdf:about="http://d.opencalais.com/dochash-1/1b5f8fa9-5934-35c9-a314-cb8f0e444af2/Instance/7"><rdf:type rdf:resource="http://s.opencalais.com/1/type/sys/InstanceInfo"/><c:docId rdf:resource="http://d.opencalais.com/dochash-1/1b5f8fa9-5934-35c9-a314-cb8f0e444af2"/><c:subject rdf:resource="http://d.opencalais.com/genericHasher-1/cc88b155-205c-3676-a151-d45f473f0b16"/><!--Country: United Kingdom; --><c:detection>[he was one of only five 19th-century ]UK[ non-royal personages to be honoured by a state]</c:detection><c:prefix>he was one of only five 19th-century </c:prefix><c:exact>UK</c:exact><c:suffix> non-royal personages to be honoured by a state</c:suffix><c:offset>2236</c:offset><c:length>2</c:length></rdf:Description><rdf:Description rdf:about="http://d.opencalais.com/dochash-1/1b5f8fa9-5934-35c9-a314-cb8f0e444af2/Relevance/4"><rdf:type rdf:resource="http://s.opencalais.com/1/type/sys/RelevanceInfo"/><c:docId rdf:resource="http://d.opencalais.com/dochash-1/1b5f8fa9-5934-35c9-a314-cb8f0e444af2"/><c:subject rdf:resource="http://d.opencalais.com/genericHasher-1/cc88b155-205c-3676-a151-d45f473f0b16"/><c:relevance>0.083</c:relevance></rdf:Description><rdf:Description rdf:about="http://d.opencalais.com/er/geo/country/ralg-geo1/9cdc126f-6826-0cbd-df3a-00a4032f0e7e"><rdf:type rdf:resource="http://s.opencalais.com/1/type/er/Geo/Country"/><c:docId rdf:resource="http://d.opencalais.com/dochash-1/1b5f8fa9-5934-35c9-a314-cb8f0e444af2"/><!--United Kingdom--><c:subject rdf:resource="http://d.opencalais.com/genericHasher-1/cc88b155-205c-3676-a151-d45f473f0b16"/><c:name>United Kingdom</c:name><c:shortname>United Kingdom</c:shortname><c:latitude>53.1142456495</c:latitude><c:longitude>-2.57711368423</c:longitude></rdf:Description><rdf:Description rdf:about="http://d.opencalais.com/pershash-1/7b85beb5-1102-33ef-84f3-f555733dfa45"><rdf:type rdf:resource="http://s.opencalais.com/1/type/em/e/Person"/><c:name>Alfred Russel Wallace</c:name><c:persontype>N/A</c:persontype><c:nationality>N/A</c:nationality></rdf:Description><rdf:Description rdf:about="http://d.opencalais.com/dochash-1/1b5f8fa9-5934-35c9-a314-cb8f0e444af2/Instance/8"><rdf:type rdf:resource="http://s.opencalais.com/1/type/sys/InstanceInfo"/><c:docId rdf:resource="http://d.opencalais.com/dochash-1/1b5f8fa9-5934-35c9-a314-cb8f0e444af2"/><c:subject rdf:resource="http://d.opencalais.com/pershash-1/7b85beb5-1102-33ef-84f3-f555733dfa45"/><!--Person: Alfred Russel Wallace; --><c:detection>[He was writing up his theory in 1858 when ]Alfred Russel Wallace[ sent him an essay which described the same idea,]</c:detection><c:prefix>He was writing up his theory in 1858 when </c:prefix><c:exact>Alfred Russel Wallace</c:exact><c:suffix> sent him an essay which described the same idea,</c:suffix><c:offset>1552</c:offset><c:length>21</c:length></rdf:Description><rdf:Description rdf:about="http://d.opencalais.com/dochash-1/1b5f8fa9-5934-35c9-a314-cb8f0e444af2/Instance/9"><rdf:type rdf:resource="http://s.opencalais.com/1/type/sys/InstanceInfo"/><c:docId rdf:resource="http://d.opencalais.com/dochash-1/1b5f8fa9-5934-35c9-a314-cb8f0e444af2"/><c:subject rdf:resource="http://d.opencalais.com/pershash-1/7b85beb5-1102-33ef-84f3-f555733dfa45"/><!--Person: Alfred Russel Wallace; --><c:detection>[ joint publication of both of their theories.[7]
14
+
15
+ ]His[ 1859 book On the Origin of Species established]</c:detection><c:prefix> joint publication of both of their theories.[7]
16
+
17
+ </c:prefix><c:exact>His</c:exact><c:suffix> 1859 book On the Origin of Species established</c:suffix><c:offset>1692</c:offset><c:length>3</c:length></rdf:Description><rdf:Description rdf:about="http://d.opencalais.com/dochash-1/1b5f8fa9-5934-35c9-a314-cb8f0e444af2/Instance/10"><rdf:type rdf:resource="http://s.opencalais.com/1/type/sys/InstanceInfo"/><c:docId rdf:resource="http://d.opencalais.com/dochash-1/1b5f8fa9-5934-35c9-a314-cb8f0e444af2"/><c:subject rdf:resource="http://d.opencalais.com/pershash-1/7b85beb5-1102-33ef-84f3-f555733dfa45"/><!--Person: Alfred Russel Wallace; --><c:detection>[explanation of diversification in nature.[2] ]He[ examined human evolution and sexual selection in]</c:detection><c:prefix>explanation of diversification in nature.[2] </c:prefix><c:exact>He</c:exact><c:suffix> examined human evolution and sexual selection in</c:suffix><c:offset>1854</c:offset><c:length>2</c:length></rdf:Description><rdf:Description rdf:about="http://d.opencalais.com/dochash-1/1b5f8fa9-5934-35c9-a314-cb8f0e444af2/Instance/11"><rdf:type rdf:resource="http://s.opencalais.com/1/type/sys/InstanceInfo"/><c:docId rdf:resource="http://d.opencalais.com/dochash-1/1b5f8fa9-5934-35c9-a314-cb8f0e444af2"/><c:subject rdf:resource="http://d.opencalais.com/pershash-1/7b85beb5-1102-33ef-84f3-f555733dfa45"/><!--Person: Alfred Russel Wallace; --><c:detection>[Expression of the Emotions in Man and Animals. ]His[ research on plants was published in a series of]</c:detection><c:prefix>Expression of the Emotions in Man and Animals. </c:prefix><c:exact>His</c:exact><c:suffix> research on plants was published in a series of</c:suffix><c:offset>2023</c:offset><c:length>3</c:length></rdf:Description><rdf:Description rdf:about="http://d.opencalais.com/dochash-1/1b5f8fa9-5934-35c9-a314-cb8f0e444af2/Instance/12"><rdf:type rdf:resource="http://s.opencalais.com/1/type/sys/InstanceInfo"/><c:docId rdf:resource="http://d.opencalais.com/dochash-1/1b5f8fa9-5934-35c9-a314-cb8f0e444af2"/><c:subject rdf:resource="http://d.opencalais.com/pershash-1/7b85beb5-1102-33ef-84f3-f555733dfa45"/><!--Person: Alfred Russel Wallace; --><c:detection>[was published in a series of books, and in ]his[ final book, he examined earthworms and their]</c:detection><c:prefix>was published in a series of books, and in </c:prefix><c:exact>his</c:exact><c:suffix> final book, he examined earthworms and their</c:suffix><c:offset>2089</c:offset><c:length>3</c:length></rdf:Description><rdf:Description rdf:about="http://d.opencalais.com/dochash-1/1b5f8fa9-5934-35c9-a314-cb8f0e444af2/Instance/13"><rdf:type rdf:resource="http://s.opencalais.com/1/type/sys/InstanceInfo"/><c:docId rdf:resource="http://d.opencalais.com/dochash-1/1b5f8fa9-5934-35c9-a314-cb8f0e444af2"/><c:subject rdf:resource="http://d.opencalais.com/pershash-1/7b85beb5-1102-33ef-84f3-f555733dfa45"/><!--Person: Alfred Russel Wallace; --><c:detection>[in a series of books, and in his final book, ]he[ examined earthworms and their effect on]</c:detection><c:prefix>in a series of books, and in his final book, </c:prefix><c:exact>he</c:exact><c:suffix> examined earthworms and their effect on</c:suffix><c:offset>2105</c:offset><c:length>2</c:length></rdf:Description><rdf:Description rdf:about="http://d.opencalais.com/dochash-1/1b5f8fa9-5934-35c9-a314-cb8f0e444af2/Relevance/5"><rdf:type rdf:resource="http://s.opencalais.com/1/type/sys/RelevanceInfo"/><c:docId rdf:resource="http://d.opencalais.com/dochash-1/1b5f8fa9-5934-35c9-a314-cb8f0e444af2"/><c:subject rdf:resource="http://d.opencalais.com/pershash-1/7b85beb5-1102-33ef-84f3-f555733dfa45"/><c:relevance>0.479</c:relevance></rdf:Description><rdf:Description rdf:about="http://d.opencalais.com/pershash-1/f0372ba8-4b6c-3b7d-91b3-67775439a8f5"><rdf:type rdf:resource="http://s.opencalais.com/1/type/em/e/Person"/><c:name>Charles Robert Darwin</c:name><c:persontype>N/A</c:persontype><c:nationality>N/A</c:nationality></rdf:Description><rdf:Description rdf:about="http://d.opencalais.com/dochash-1/1b5f8fa9-5934-35c9-a314-cb8f0e444af2/Instance/14"><rdf:type rdf:resource="http://s.opencalais.com/1/type/sys/InstanceInfo"/><c:docId rdf:resource="http://d.opencalais.com/dochash-1/1b5f8fa9-5934-35c9-a314-cb8f0e444af2"/><c:subject rdf:resource="http://d.opencalais.com/pershash-1/f0372ba8-4b6c-3b7d-91b3-67775439a8f5"/><!--Person: Charles Robert Darwin; --><c:detection>[&lt;Document&gt;&lt;Date&gt;2009-06-08&lt;/Date&gt;&lt;Body&gt;]Charles Robert Darwin[ FRS (12 February 1809 – 19 April 1882) was an]</c:detection><c:prefix>&lt;Document&gt;&lt;Date&gt;2009-06-08&lt;/Date&gt;&lt;Body&gt;</c:prefix><c:exact>Charles Robert Darwin</c:exact><c:suffix> FRS (12 February 1809 – 19 April 1882) was an</c:suffix><c:offset>39</c:offset><c:length>21</c:length></rdf:Description><rdf:Description rdf:about="http://d.opencalais.com/dochash-1/1b5f8fa9-5934-35c9-a314-cb8f0e444af2/Instance/15"><rdf:type rdf:resource="http://s.opencalais.com/1/type/sys/InstanceInfo"/><c:docId rdf:resource="http://d.opencalais.com/dochash-1/1b5f8fa9-5934-35c9-a314-cb8f0e444af2"/><c:subject rdf:resource="http://d.opencalais.com/pershash-1/f0372ba8-4b6c-3b7d-91b3-67775439a8f5"/><!--Person: Charles Robert Darwin; --><c:detection>[time from common ancestors, through the process ]he[ called natural selection.[1] The fact that]</c:detection><c:prefix>time from common ancestors, through the process </c:prefix><c:exact>he</c:exact><c:suffix> called natural selection.[1] The fact that</c:suffix><c:offset>267</c:offset><c:length>2</c:length></rdf:Description><rdf:Description rdf:about="http://d.opencalais.com/dochash-1/1b5f8fa9-5934-35c9-a314-cb8f0e444af2/Instance/16"><rdf:type rdf:resource="http://s.opencalais.com/1/type/sys/InstanceInfo"/><c:docId rdf:resource="http://d.opencalais.com/dochash-1/1b5f8fa9-5934-35c9-a314-cb8f0e444af2"/><c:subject rdf:resource="http://d.opencalais.com/pershash-1/f0372ba8-4b6c-3b7d-91b3-67775439a8f5"/><!--Person: Charles Robert Darwin; --><c:detection>[community and much of the general public in ]his[ lifetime, while his theory of natural selection]</c:detection><c:prefix>community and much of the general public in </c:prefix><c:exact>his</c:exact><c:suffix> lifetime, while his theory of natural selection</c:suffix><c:offset>408</c:offset><c:length>3</c:length></rdf:Description><rdf:Description rdf:about="http://d.opencalais.com/dochash-1/1b5f8fa9-5934-35c9-a314-cb8f0e444af2/Instance/17"><rdf:type rdf:resource="http://s.opencalais.com/1/type/sys/InstanceInfo"/><c:docId rdf:resource="http://d.opencalais.com/dochash-1/1b5f8fa9-5934-35c9-a314-cb8f0e444af2"/><c:subject rdf:resource="http://d.opencalais.com/pershash-1/f0372ba8-4b6c-3b7d-91b3-67775439a8f5"/><!--Person: Charles Robert Darwin; --><c:detection>[of the general public in his lifetime, while ]his[ theory of natural selection came to be widely]</c:detection><c:prefix>of the general public in his lifetime, while </c:prefix><c:exact>his</c:exact><c:suffix> theory of natural selection came to be widely</c:suffix><c:offset>428</c:offset><c:length>3</c:length></rdf:Description><rdf:Description rdf:about="http://d.opencalais.com/dochash-1/1b5f8fa9-5934-35c9-a314-cb8f0e444af2/Instance/18"><rdf:type rdf:resource="http://s.opencalais.com/1/type/sys/InstanceInfo"/><c:docId rdf:resource="http://d.opencalais.com/dochash-1/1b5f8fa9-5934-35c9-a314-cb8f0e444af2"/><c:subject rdf:resource="http://d.opencalais.com/pershash-1/f0372ba8-4b6c-3b7d-91b3-67775439a8f5"/><!--Person: Charles Robert Darwin; --><c:detection>[ of modern evolutionary theory. In modified form, ]Darwin['s scientific discovery is the unifying theory of]</c:detection><c:prefix> of modern evolutionary theory. In modified form, </c:prefix><c:exact>Darwin</c:exact><c:suffix>'s scientific discovery is the unifying theory of</c:suffix><c:offset>628</c:offset><c:length>6</c:length></rdf:Description><rdf:Description rdf:about="http://d.opencalais.com/dochash-1/1b5f8fa9-5934-35c9-a314-cb8f0e444af2/Instance/19"><rdf:type rdf:resource="http://s.opencalais.com/1/type/sys/InstanceInfo"/><c:docId rdf:resource="http://d.opencalais.com/dochash-1/1b5f8fa9-5934-35c9-a314-cb8f0e444af2"/><c:subject rdf:resource="http://d.opencalais.com/pershash-1/f0372ba8-4b6c-3b7d-91b3-67775439a8f5"/><!--Person: Charles Robert Darwin; --><c:detection>[encouraged a passion for natural science.[4] ]His[ five-year voyage on HMS Beagle established him]</c:detection><c:prefix>encouraged a passion for natural science.[4] </c:prefix><c:exact>His</c:exact><c:suffix> five-year voyage on HMS Beagle established him</c:suffix><c:offset>936</c:offset><c:length>3</c:length></rdf:Description><rdf:Description rdf:about="http://d.opencalais.com/dochash-1/1b5f8fa9-5934-35c9-a314-cb8f0e444af2/Instance/20"><rdf:type rdf:resource="http://s.opencalais.com/1/type/sys/InstanceInfo"/><c:docId rdf:resource="http://d.opencalais.com/dochash-1/1b5f8fa9-5934-35c9-a314-cb8f0e444af2"/><c:subject rdf:resource="http://d.opencalais.com/pershash-1/f0372ba8-4b6c-3b7d-91b3-67775439a8f5"/><!--Person: Charles Robert Darwin; --><c:detection>[His five-year voyage on HMS Beagle established ]him[ as an eminent geologist whose observations and]</c:detection><c:prefix>His five-year voyage on HMS Beagle established </c:prefix><c:exact>him</c:exact><c:suffix> as an eminent geologist whose observations and</c:suffix><c:offset>983</c:offset><c:length>3</c:length></rdf:Description><rdf:Description rdf:about="http://d.opencalais.com/dochash-1/1b5f8fa9-5934-35c9-a314-cb8f0e444af2/Instance/21"><rdf:type rdf:resource="http://s.opencalais.com/1/type/sys/InstanceInfo"/><c:docId rdf:resource="http://d.opencalais.com/dochash-1/1b5f8fa9-5934-35c9-a314-cb8f0e444af2"/><c:subject rdf:resource="http://d.opencalais.com/pershash-1/f0372ba8-4b6c-3b7d-91b3-67775439a8f5"/><!--Person: Charles Robert Darwin; --><c:detection>[ wildlife and fossils he collected on the voyage, ]Darwin[ investigated the transmutation of species and]</c:detection><c:prefix> wildlife and fossils he collected on the voyage, </c:prefix><c:exact>Darwin</c:exact><c:suffix> investigated the transmutation of species and</c:suffix><c:offset>1266</c:offset><c:length>6</c:length></rdf:Description><rdf:Description rdf:about="http://d.opencalais.com/dochash-1/1b5f8fa9-5934-35c9-a314-cb8f0e444af2/Instance/22"><rdf:type rdf:resource="http://s.opencalais.com/1/type/sys/InstanceInfo"/><c:docId rdf:resource="http://d.opencalais.com/dochash-1/1b5f8fa9-5934-35c9-a314-cb8f0e444af2"/><c:subject rdf:resource="http://d.opencalais.com/pershash-1/f0372ba8-4b6c-3b7d-91b3-67775439a8f5"/><!--Person: Charles Robert Darwin; --><c:detection>[the transmutation of species and conceived ]his[ theory of natural selection in 1838.[5] Although]</c:detection><c:prefix>the transmutation of species and conceived </c:prefix><c:exact>his</c:exact><c:suffix> theory of natural selection in 1838.[5] Although</c:suffix><c:offset>1329</c:offset><c:length>3</c:length></rdf:Description><rdf:Description rdf:about="http://d.opencalais.com/dochash-1/1b5f8fa9-5934-35c9-a314-cb8f0e444af2/Instance/23"><rdf:type rdf:resource="http://s.opencalais.com/1/type/sys/InstanceInfo"/><c:docId rdf:resource="http://d.opencalais.com/dochash-1/1b5f8fa9-5934-35c9-a314-cb8f0e444af2"/><c:subject rdf:resource="http://d.opencalais.com/pershash-1/f0372ba8-4b6c-3b7d-91b3-67775439a8f5"/><!--Person: Charles Robert Darwin; --><c:detection>[ theory of natural selection in 1838.[5] Although ]he[ discussed his ideas with several naturalists, he]</c:detection><c:prefix> theory of natural selection in 1838.[5] Although </c:prefix><c:exact>he</c:exact><c:suffix> discussed his ideas with several naturalists, he</c:suffix><c:offset>1382</c:offset><c:length>2</c:length></rdf:Description><rdf:Description rdf:about="http://d.opencalais.com/dochash-1/1b5f8fa9-5934-35c9-a314-cb8f0e444af2/Instance/24"><rdf:type rdf:resource="http://s.opencalais.com/1/type/sys/InstanceInfo"/><c:docId rdf:resource="http://d.opencalais.com/dochash-1/1b5f8fa9-5934-35c9-a314-cb8f0e444af2"/><c:subject rdf:resource="http://d.opencalais.com/pershash-1/f0372ba8-4b6c-3b7d-91b3-67775439a8f5"/><!--Person: Charles Robert Darwin; --><c:detection>[selection in 1838.[5] Although he discussed ]his[ ideas with several naturalists, he needed time]</c:detection><c:prefix>selection in 1838.[5] Although he discussed </c:prefix><c:exact>his</c:exact><c:suffix> ideas with several naturalists, he needed time</c:suffix><c:offset>1395</c:offset><c:length>3</c:length></rdf:Description><rdf:Description rdf:about="http://d.opencalais.com/dochash-1/1b5f8fa9-5934-35c9-a314-cb8f0e444af2/Instance/25"><rdf:type rdf:resource="http://s.opencalais.com/1/type/sys/InstanceInfo"/><c:docId rdf:resource="http://d.opencalais.com/dochash-1/1b5f8fa9-5934-35c9-a314-cb8f0e444af2"/><c:subject rdf:resource="http://d.opencalais.com/pershash-1/f0372ba8-4b6c-3b7d-91b3-67775439a8f5"/><!--Person: Charles Robert Darwin; --><c:detection>[ he discussed his ideas with several naturalists, ]he[ needed time for extensive research and his]</c:detection><c:prefix> he discussed his ideas with several naturalists, </c:prefix><c:exact>he</c:exact><c:suffix> needed time for extensive research and his</c:suffix><c:offset>1431</c:offset><c:length>2</c:length></rdf:Description><rdf:Description rdf:about="http://d.opencalais.com/dochash-1/1b5f8fa9-5934-35c9-a314-cb8f0e444af2/Instance/26"><rdf:type rdf:resource="http://s.opencalais.com/1/type/sys/InstanceInfo"/><c:docId rdf:resource="http://d.opencalais.com/dochash-1/1b5f8fa9-5934-35c9-a314-cb8f0e444af2"/><c:subject rdf:resource="http://d.opencalais.com/pershash-1/f0372ba8-4b6c-3b7d-91b3-67775439a8f5"/><!--Person: Charles Robert Darwin; --><c:detection>[he needed time for extensive research and ]his[ geological work had priority.[6] He was writing]</c:detection><c:prefix>he needed time for extensive research and </c:prefix><c:exact>his</c:exact><c:suffix> geological work had priority.[6] He was writing</c:suffix><c:offset>1473</c:offset><c:length>3</c:length></rdf:Description><rdf:Description rdf:about="http://d.opencalais.com/dochash-1/1b5f8fa9-5934-35c9-a314-cb8f0e444af2/Instance/27"><rdf:type rdf:resource="http://s.opencalais.com/1/type/sys/InstanceInfo"/><c:docId rdf:resource="http://d.opencalais.com/dochash-1/1b5f8fa9-5934-35c9-a314-cb8f0e444af2"/><c:subject rdf:resource="http://d.opencalais.com/pershash-1/f0372ba8-4b6c-3b7d-91b3-67775439a8f5"/><!--Person: Charles Robert Darwin; --><c:detection>[and his geological work had priority.[6] ]He[ was writing up his theory in 1858 when Alfred]</c:detection><c:prefix>and his geological work had priority.[6] </c:prefix><c:exact>He</c:exact><c:suffix> was writing up his theory in 1858 when Alfred</c:suffix><c:offset>1510</c:offset><c:length>2</c:length></rdf:Description><rdf:Description rdf:about="http://d.opencalais.com/dochash-1/1b5f8fa9-5934-35c9-a314-cb8f0e444af2/Instance/28"><rdf:type rdf:resource="http://s.opencalais.com/1/type/sys/InstanceInfo"/><c:docId rdf:resource="http://d.opencalais.com/dochash-1/1b5f8fa9-5934-35c9-a314-cb8f0e444af2"/><c:subject rdf:resource="http://d.opencalais.com/pershash-1/f0372ba8-4b6c-3b7d-91b3-67775439a8f5"/><!--Person: Charles Robert Darwin; --><c:detection>[work had priority.[6] He was writing up ]his[ theory in 1858 when Alfred Russel Wallace sent]</c:detection><c:prefix>work had priority.[6] He was writing up </c:prefix><c:exact>his</c:exact><c:suffix> theory in 1858 when Alfred Russel Wallace sent</c:suffix><c:offset>1528</c:offset><c:length>3</c:length></rdf:Description><rdf:Description rdf:about="http://d.opencalais.com/dochash-1/1b5f8fa9-5934-35c9-a314-cb8f0e444af2/Instance/29"><rdf:type rdf:resource="http://s.opencalais.com/1/type/sys/InstanceInfo"/><c:docId rdf:resource="http://d.opencalais.com/dochash-1/1b5f8fa9-5934-35c9-a314-cb8f0e444af2"/><c:subject rdf:resource="http://d.opencalais.com/pershash-1/f0372ba8-4b6c-3b7d-91b3-67775439a8f5"/><!--Person: Charles Robert Darwin; --><c:detection>[theory in 1858 when Alfred Russel Wallace sent ]him[ an essay which described the same idea,]</c:detection><c:prefix>theory in 1858 when Alfred Russel Wallace sent </c:prefix><c:exact>him</c:exact><c:suffix> an essay which described the same idea,</c:suffix><c:offset>1579</c:offset><c:length>3</c:length></rdf:Description><rdf:Description rdf:about="http://d.opencalais.com/dochash-1/1b5f8fa9-5934-35c9-a314-cb8f0e444af2/Instance/30"><rdf:type rdf:resource="http://s.opencalais.com/1/type/sys/InstanceInfo"/><c:docId rdf:resource="http://d.opencalais.com/dochash-1/1b5f8fa9-5934-35c9-a314-cb8f0e444af2"/><c:subject rdf:resource="http://d.opencalais.com/pershash-1/f0372ba8-4b6c-3b7d-91b3-67775439a8f5"/><!--Person: Charles Robert Darwin; --><c:detection>[and their effect on soil.[8]
18
+
19
+ In recognition of ]Darwin['s pre-eminence, he was one of only five]</c:detection><c:prefix>and their effect on soil.[8]
20
+
21
+ In recognition of </c:prefix><c:exact>Darwin</c:exact><c:suffix>'s pre-eminence, he was one of only five</c:suffix><c:offset>2176</c:offset><c:length>6</c:length></rdf:Description><rdf:Description rdf:about="http://d.opencalais.com/dochash-1/1b5f8fa9-5934-35c9-a314-cb8f0e444af2/Instance/31"><rdf:type rdf:resource="http://s.opencalais.com/1/type/sys/InstanceInfo"/><c:docId rdf:resource="http://d.opencalais.com/dochash-1/1b5f8fa9-5934-35c9-a314-cb8f0e444af2"/><c:subject rdf:resource="http://d.opencalais.com/pershash-1/f0372ba8-4b6c-3b7d-91b3-67775439a8f5"/><!--Person: Charles Robert Darwin; --><c:detection>[recognition of Darwin's pre-eminence, ]he[ was one of only five 19th-century UK non-royal]</c:detection><c:prefix>recognition of Darwin's pre-eminence, </c:prefix><c:exact>he</c:exact><c:suffix> was one of only five 19th-century UK non-royal</c:suffix><c:offset>2199</c:offset><c:length>2</c:length></rdf:Description><rdf:Description rdf:about="http://d.opencalais.com/dochash-1/1b5f8fa9-5934-35c9-a314-cb8f0e444af2/Relevance/6"><rdf:type rdf:resource="http://s.opencalais.com/1/type/sys/RelevanceInfo"/><c:docId rdf:resource="http://d.opencalais.com/dochash-1/1b5f8fa9-5934-35c9-a314-cb8f0e444af2"/><c:subject rdf:resource="http://d.opencalais.com/pershash-1/f0372ba8-4b6c-3b7d-91b3-67775439a8f5"/><c:relevance>0.860</c:relevance></rdf:Description><rdf:Description rdf:about="http://d.opencalais.com/pershash-1/b6ba8c23-280b-3d4e-8fbd-ec177c671c22"><rdf:type rdf:resource="http://s.opencalais.com/1/type/em/e/Person"/><c:name>John Herschel</c:name><c:persontype>N/A</c:persontype><c:nationality>N/A</c:nationality></rdf:Description><rdf:Description rdf:about="http://d.opencalais.com/dochash-1/1b5f8fa9-5934-35c9-a314-cb8f0e444af2/Instance/32"><rdf:type rdf:resource="http://s.opencalais.com/1/type/sys/InstanceInfo"/><c:docId rdf:resource="http://d.opencalais.com/dochash-1/1b5f8fa9-5934-35c9-a314-cb8f0e444af2"/><c:subject rdf:resource="http://d.opencalais.com/pershash-1/b6ba8c23-280b-3d4e-8fbd-ec177c671c22"/><!--Person: John Herschel; --><c:detection>[and was buried in Westminster Abbey, close to ]John Herschel[ and Isaac Newton.[10]&lt;/Body&gt;&lt;/Document&gt;]</c:detection><c:prefix>and was buried in Westminster Abbey, close to </c:prefix><c:exact>John Herschel</c:exact><c:suffix> and Isaac Newton.[10]&lt;/Body&gt;&lt;/Document&gt;</c:suffix><c:offset>2344</c:offset><c:length>13</c:length></rdf:Description><rdf:Description rdf:about="http://d.opencalais.com/dochash-1/1b5f8fa9-5934-35c9-a314-cb8f0e444af2/Relevance/7"><rdf:type rdf:resource="http://s.opencalais.com/1/type/sys/RelevanceInfo"/><c:docId rdf:resource="http://d.opencalais.com/dochash-1/1b5f8fa9-5934-35c9-a314-cb8f0e444af2"/><c:subject rdf:resource="http://d.opencalais.com/pershash-1/b6ba8c23-280b-3d4e-8fbd-ec177c671c22"/><c:relevance>0.083</c:relevance></rdf:Description><rdf:Description rdf:about="http://d.opencalais.com/genericHasher-1/2a0f3197-41f0-3ebf-bd8e-cb4650993ba2"><rdf:type rdf:resource="http://s.opencalais.com/1/type/em/e/Position"/><c:name>eminent geologist </c:name></rdf:Description><rdf:Description rdf:about="http://d.opencalais.com/dochash-1/1b5f8fa9-5934-35c9-a314-cb8f0e444af2/Instance/33"><rdf:type rdf:resource="http://s.opencalais.com/1/type/sys/InstanceInfo"/><c:docId rdf:resource="http://d.opencalais.com/dochash-1/1b5f8fa9-5934-35c9-a314-cb8f0e444af2"/><c:subject rdf:resource="http://d.opencalais.com/genericHasher-1/2a0f3197-41f0-3ebf-bd8e-cb4650993ba2"/><!--Position: eminent geologist ; --><c:detection>[voyage on HMS Beagle established him as ]an eminent geologist[ whose observations and theories supported]</c:detection><c:prefix>voyage on HMS Beagle established him as </c:prefix><c:exact>an eminent geologist</c:exact><c:suffix> whose observations and theories supported</c:suffix><c:offset>990</c:offset><c:length>20</c:length></rdf:Description><rdf:Description rdf:about="http://d.opencalais.com/dochash-1/1b5f8fa9-5934-35c9-a314-cb8f0e444af2/Relevance/8"><rdf:type rdf:resource="http://s.opencalais.com/1/type/sys/RelevanceInfo"/><c:docId rdf:resource="http://d.opencalais.com/dochash-1/1b5f8fa9-5934-35c9-a314-cb8f0e444af2"/><c:subject rdf:resource="http://d.opencalais.com/genericHasher-1/2a0f3197-41f0-3ebf-bd8e-cb4650993ba2"/><c:relevance>0.273</c:relevance></rdf:Description><rdf:Description rdf:about="http://d.opencalais.com/genericHasher-1/f02f2c35-a262-3cec-849f-6000fd428ce2"><rdf:type rdf:resource="http://s.opencalais.com/1/type/em/r/Quotation"/><!--Charles Robert Darwin--><c:person rdf:resource="http://d.opencalais.com/pershash-1/f0372ba8-4b6c-3b7d-91b3-67775439a8f5"/><c:quote>up his theory in 1858 when Alfred Russel Wallace sent him an essay which described the same idea, prompting immediate joint publication of both of their theories.[7</c:quote></rdf:Description><rdf:Description rdf:about="http://d.opencalais.com/dochash-1/1b5f8fa9-5934-35c9-a314-cb8f0e444af2/Instance/34"><rdf:type rdf:resource="http://s.opencalais.com/1/type/sys/InstanceInfo"/><c:docId rdf:resource="http://d.opencalais.com/dochash-1/1b5f8fa9-5934-35c9-a314-cb8f0e444af2"/><c:subject rdf:resource="http://d.opencalais.com/genericHasher-1/f02f2c35-a262-3cec-849f-6000fd428ce2"/><!--Quotation: person: Charles Robert Darwin; quote: up his theory in 1858 when Alfred Russel Wallace sent him an essay which described the same idea, prompting immediate joint publication of both of their theories.[7; --><c:detection>[the voyage made him famous as a popular author. ]Puzzled by the geographical distribution of wildlife and fossils he collected on the voyage, Darwin investigated the transmutation of species and conceived his theory of natural selection in 1838.[5] Although he discussed his ideas with several naturalists, he needed time for extensive research and his geological work had priority.[6] He was writing up his theory in 1858 when Alfred Russel Wallace sent him an essay which described the same idea, prompting immediate joint publication of both of their theories.[7][
22
+
23
+ His 1859 book On the Origin of Species]</c:detection><c:prefix>the voyage made him famous as a popular author. </c:prefix><c:exact>Puzzled by the geographical distribution of wildlife and fossils he collected on the voyage, Darwin investigated the transmutation of species and conceived his theory of natural selection in 1838.[5] Although he discussed his ideas with several naturalists, he needed time for extensive research and his geological work had priority.[6] He was writing up his theory in 1858 when Alfred Russel Wallace sent him an essay which described the same idea, prompting immediate joint publication of both of their theories.[7]</c:exact><c:suffix>
24
+
25
+ His 1859 book On the Origin of Species</c:suffix><c:offset>1173</c:offset><c:length>517</c:length></rdf:Description><rdf:Description rdf:about="http://d.opencalais.com/genericHasher-1/6724548b-6c10-39b6-8d12-1beec8b9ef67"><rdf:type rdf:resource="http://s.opencalais.com/1/type/em/e/Facility"/><c:name>Westminster Abbey</c:name></rdf:Description><rdf:Description rdf:about="http://d.opencalais.com/dochash-1/1b5f8fa9-5934-35c9-a314-cb8f0e444af2/Instance/35"><rdf:type rdf:resource="http://s.opencalais.com/1/type/sys/InstanceInfo"/><c:docId rdf:resource="http://d.opencalais.com/dochash-1/1b5f8fa9-5934-35c9-a314-cb8f0e444af2"/><c:subject rdf:resource="http://d.opencalais.com/genericHasher-1/6724548b-6c10-39b6-8d12-1beec8b9ef67"/><!--Facility: Westminster Abbey; --><c:detection>[by a state funeral,[9] and was buried in ]Westminster Abbey[, close to John Herschel and Isaac]</c:detection><c:prefix>by a state funeral,[9] and was buried in </c:prefix><c:exact>Westminster Abbey</c:exact><c:suffix>, close to John Herschel and Isaac</c:suffix><c:offset>2316</c:offset><c:length>17</c:length></rdf:Description><rdf:Description rdf:about="http://d.opencalais.com/dochash-1/1b5f8fa9-5934-35c9-a314-cb8f0e444af2/Relevance/9"><rdf:type rdf:resource="http://s.opencalais.com/1/type/sys/RelevanceInfo"/><c:docId rdf:resource="http://d.opencalais.com/dochash-1/1b5f8fa9-5934-35c9-a314-cb8f0e444af2"/><c:subject rdf:resource="http://d.opencalais.com/genericHasher-1/6724548b-6c10-39b6-8d12-1beec8b9ef67"/><c:relevance>0.083</c:relevance></rdf:Description><rdf:Description rdf:about="http://d.opencalais.com/genericHasher-1/194bc4ba-3d62-3663-bb42-997e29921002"><rdf:type rdf:resource="http://s.opencalais.com/1/type/em/e/Organization"/><c:name>University of Cambridge</c:name><c:organizationtype>N/A</c:organizationtype><c:nationality>British</c:nationality></rdf:Description><rdf:Description rdf:about="http://d.opencalais.com/dochash-1/1b5f8fa9-5934-35c9-a314-cb8f0e444af2/Instance/36"><rdf:type rdf:resource="http://s.opencalais.com/1/type/sys/InstanceInfo"/><c:docId rdf:resource="http://d.opencalais.com/dochash-1/1b5f8fa9-5934-35c9-a314-cb8f0e444af2"/><c:subject rdf:resource="http://d.opencalais.com/genericHasher-1/194bc4ba-3d62-3663-bb42-997e29921002"/><!--Organization: University of Cambridge; --><c:detection>[to investigate marine invertebrates, then the ]University of Cambridge[ encouraged a passion for natural science.[4] His]</c:detection><c:prefix>to investigate marine invertebrates, then the </c:prefix><c:exact>University of Cambridge</c:exact><c:suffix> encouraged a passion for natural science.[4] His</c:suffix><c:offset>867</c:offset><c:length>23</c:length></rdf:Description><rdf:Description rdf:about="http://d.opencalais.com/dochash-1/1b5f8fa9-5934-35c9-a314-cb8f0e444af2/Relevance/10"><rdf:type rdf:resource="http://s.opencalais.com/1/type/sys/RelevanceInfo"/><c:docId rdf:resource="http://d.opencalais.com/dochash-1/1b5f8fa9-5934-35c9-a314-cb8f0e444af2"/><c:subject rdf:resource="http://d.opencalais.com/genericHasher-1/194bc4ba-3d62-3663-bb42-997e29921002"/><c:relevance>0.273</c:relevance></rdf:Description></rdf:RDF>