aboutsummaryrefslogtreecommitdiff
path: root/gn3/api/wgcna.py
blob: a3bacdd12cad42d6b0d79dc6583a2002966fa385 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
"""endpoint to run wgcna analysis"""
from flask import Blueprint
from flask import request

wgcna = Blueprint("wgcna", __name__)


@wgcna.route("/run_wgcna", methods=["POST"])
def run_wgcna():

    _wgcna_data = request.json

    return "success", 200