blob: 5d4949333f1ea16e722ce692ac3fc0ef9ac39ce5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
"""endpoint to run wgcna analysis"""
from flask import Blueprint
from flask import request
from flask import current_app
from gn3.computations.wgcna import call_wgcna_script
wgcna = Blueprint("wgcna", __name__)
@wgcna.route("/run_wgcna", methods=["POST"])
def run_wgcna():
"""run wgcna:output should be a json with a the data"""
wgcna_data = request.json
wgcna_script = current_app.config["WGCNA_RSCRIPT"]
results = call_wgcna_script(wgcna_script, wgcna_data)
return results, 200
|