Skip to content

Commit

Permalink
Update console.html, plugins
Browse files Browse the repository at this point in the history
  • Loading branch information
gnh1201 committed Oct 24, 2024
1 parent 2fa3f14 commit ef72ba9
Show file tree
Hide file tree
Showing 2 changed files with 23 additions and 1 deletion.
22 changes: 22 additions & 0 deletions console.html
Original file line number Diff line number Diff line change
Expand Up @@ -291,6 +291,28 @@ <h1>Caterpillar Proxy Web Console</h1>
}
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, {});
Expand Down
2 changes: 1 addition & 1 deletion plugins
Submodule plugins updated 1 files
+4 −0 requirements.txt

0 comments on commit ef72ba9

Please sign in to comment.