Update console.html, plugins

This commit is contained in:
Namhyeon Go 2024-10-25 07:08:39 +09:00
parent 2fa3f1471f
commit ef72ba9296
2 changed files with 23 additions and 1 deletions

View File

@ -291,6 +291,28 @@
}
return;
}
// method(analyze_sequence)
if (env.method == "analyze_sequence") {
var _this = this;
this.read("Enter the sequence:\r\n", function(message) {
jsonrpc2_request(this, env.method, {
"sequence": message
});
});
return;
}
// method(gc_content_calculation)
if (env.method == "gc_content_calculation") {
var _this = this;
this.read("Enter the sequence:\r\n", function(message) {
jsonrpc2_request(this, env.method, {
"sequence": message
});
});
return;
}
// method(*)
jsonrpc2_request(this, env.method, {});

@ -1 +1 @@
Subproject commit f884614fbac67446c3b28bde905e0ebe93e2367d
Subproject commit 807fed75ac44ac24d85a8506e1a5264d63f02f03