This file contains 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
#define SBOL_URI "http://sbolstandard.org/v2" | |
static void | |
print_triple(void* user_data, raptor_statement* triple) | |
{ | |
raptor_statement_print_as_ntriples(triple, stdout); | |
fputc('\n', stdout); | |
} | |
void Document::read(std::string filename) |
This file contains 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
/* Should be placed inside your .ipython/nbextensions folder */ | |
require(["widgets/js/widget", "widgets/js/manager"], function(widget, manager){ | |
console.log('Module loaded'); | |
var CustomPickerView = widget.DOMWidgetView.extend({ | |
// Render the view. | |
render: function(){ | |
this.$el.text('Hello World!'); | |
}, | |
update: function(options) { |