当前位置: 首页>>代码示例>>Python>>正文


Python logger.info函数代码示例

本文整理汇总了Python中utility.logger.info函数的典型用法代码示例。如果您正苦于以下问题:Python info函数的具体用法?Python info怎么用?Python info使用的例子?那么恭喜您, 这里精选的函数代码示例或许可以为您提供帮助。


在下文中一共展示了info函数的15个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。

示例1: sharing_info_page

def sharing_info_page():
    """Info page displayed when the user clicks the "Info" button next to the dataset selection"""
    logger.info("In sharing_info_page")
    logger.error(request.url)
    fd = webqtlFormData.webqtlFormData(request.args)
    template_vars = SharingInfoPage.SharingInfoPage(fd)
    return template_vars
开发者ID:pjotrp,项目名称:genenetwork2,代码行数:7,代码来源:views.py

示例2: corr_scatter_plot_page

def corr_scatter_plot_page():
    logger.info(request.url)
    template_vars = corr_scatter_plot.CorrScatterPlot(request.args)
    template_vars.js_data = json.dumps(template_vars.js_data,
                                       default=json_default_handler,
                                       indent="   ")
    return render_template("corr_scatterplot.html", **template_vars.__dict__)
开发者ID:genenetwork,项目名称:genenetwork2,代码行数:7,代码来源:views.py

示例3: ctl_results

def ctl_results():
    logger.info("In ctl, request.form is:", request.form)
    logger.info(request.url)
    ctl = ctl_analysis.CTL()                                  # Start R, load the package and pointers and create the analysis
    ctlA = ctl.run_analysis(request.form)                     # Start the analysis, a ctlA object should be a separate long running thread
    result = ctl.process_results(ctlA)                        # After the analysis is finished store the result
    return render_template("ctl_results.html", **result)      # Display them using the template
开发者ID:genenetwork,项目名称:genenetwork2,代码行数:7,代码来源:views.py

示例4: export

def export():
    logger.info("request.form:", request.form)
    svg_xml = request.form.get("data", "Invalid data")
    filename = request.form.get("filename", "manhattan_plot_snp")
    response = Response(svg_xml, mimetype="image/svg+xml")
    response.headers["Content-Disposition"] = "attachment; filename=%s"%filename
    return response
开发者ID:zsloan,项目名称:genenetwork2,代码行数:7,代码来源:views.py

示例5: create_temp_trait

def create_temp_trait():
    logger.info(request.url)
    print("REQUEST.FORM:", request.form)
    #template_vars = submit_trait.SubmitTrait(request.form)

    doc = docs.Docs("links")
    return render_template("links.html", **doc.__dict__)
开发者ID:genenetwork,项目名称:genenetwork2,代码行数:7,代码来源:views.py

示例6: loadImage

 def loadImage(self, path, name):
     logger.info("pre-loading imgage results:", self.results[path])
     imgfile = open(self.results[path], 'rb')
     imgdata = imgfile.read()
     imgB64 = imgdata.encode("base64")
     bytesarray = array.array('B', imgB64)
     self.results[name] = bytesarray
开发者ID:pjotrp,项目名称:genenetwork2,代码行数:7,代码来源:phewas_analysis.py

示例7: wcgna_results

def wcgna_results():
    logger.info("In wgcna, request.form is:", request.form)
    logger.info(request.url)
    wgcna = wgcna_analysis.WGCNA()                                # Start R, load the package and pointers and create the analysis
    wgcnaA = wgcna.run_analysis(request.form)                     # Start the analysis, a wgcnaA object should be a separate long running thread
    result = wgcna.process_results(wgcnaA)                        # After the analysis is finished store the result
    return render_template("wgcna_results.html", **result)        # Display them using the template
开发者ID:genenetwork,项目名称:genenetwork2,代码行数:7,代码来源:views.py

示例8: search_page

def search_page():
    logger.info("in search_page")
    logger.info(request.url)
    result = None
    if USE_REDIS:
        with Bench("Trying Redis cache"):
            key = "search_results:v1:" + json.dumps(request.args, sort_keys=True)
            logger.debug("key is:", pf(key))
            result = Redis.get(key)
            if result:
                logger.info("Redis cache hit on search results!")
                result = pickle.loads(result)
    else:
        logger.info("Skipping Redis cache (USE_REDIS=False)")

    logger.info("request.args is", request.args)
    the_search = search_results.SearchResultPage(request.args)
    result = the_search.__dict__
    valid_search = result['search_term_exists']

    logger.debugf("result", result)

    if USE_REDIS and valid_search:
        Redis.set(key, pickle.dumps(result, pickle.HIGHEST_PROTOCOL))
        Redis.expire(key, 60*60)

    if valid_search:
        return render_template("search_result_page.html", **result)
    else:
        return render_template("search_error.html")
开发者ID:genenetwork,项目名称:genenetwork2,代码行数:30,代码来源:views.py

示例9: gsearchact

def gsearchact():
    logger.info(request.url)
    result = gsearch.GSearch(request.args).__dict__
    type = request.args['type']
    if type == "gene":
        return render_template("gsearch_gene.html", **result)
    elif type == "phenotype":
        return render_template("gsearch_pheno.html", **result)
开发者ID:genenetwork,项目名称:genenetwork2,代码行数:8,代码来源:views.py

示例10: process_results

 def process_results(self, results):
     logger.info("Processing CTL output")
     template_vars = {}
     template_vars["results"] = self.results
     template_vars["elements"] = self.elements
     self.render_image(self.results)
     sys.stdout.flush()
     return(dict(template_vars))
开发者ID:genenetwork,项目名称:genenetwork2,代码行数:8,代码来源:ctl_analysis.py

示例11: init_db

def init_db():
    # import all modules here that might define models so that
    # they will be registered properly on the metadata.  Otherwise
    # you will have to import them first before calling init_db()
    #import yourapplication.models
    import wqflask.model
    logger.debug("Creating all model metadata")
    Base.metadata.create_all(bind=engine)
    logger.info("Done creating all model metadata")
开发者ID:DannyArends,项目名称:genenetwork2,代码行数:9,代码来源:database.py

示例12: process_results

    def process_results(self, results):
        logger.info("Processing PheWAS output")
        # TODO: get the PDF in the temp folder, and display it to the user
        template_vars = {}
        template_vars["results"] = self.results
        self.render_image(self.results)
        template_vars["R_debuglog"] = self.results['R_debuglog']

        return(dict(template_vars))
开发者ID:pjotrp,项目名称:genenetwork2,代码行数:9,代码来源:phewas_analysis.py

示例13: export_traits_csv

def export_traits_csv():
    """CSV file consisting of the traits from the search result page"""
    logger.info("In export_traits_csv")
    logger.info("request.form:", request.form)
    csv_data = export_traits.export_search_results_csv(request.form)

    return Response(csv_data,
                    mimetype='text/csv',
                    headers={"Content-Disposition":"attachment;filename=trait_list.csv"})
开发者ID:zsloan,项目名称:genenetwork2,代码行数:9,代码来源:views.py

示例14: export_mapping_results

def export_mapping_results():
    logger.info("request.form:", request.form)
    logger.info(request.url)
    file_path = request.form.get("results_path")
    results_csv = open(file_path, "r").read()
    response = Response(results_csv,
                        mimetype='text/csv',
                        headers={"Content-Disposition":"attachment;filename=mapping_results.csv"})

    return response
开发者ID:genenetwork,项目名称:genenetwork2,代码行数:10,代码来源:views.py

示例15: __init__

 def __init__(self):
     ("Initialization of PheWAS")
     # TODO: Loading the package should only be done once, since it is quite expensive
     logger.info(r_library("auwerx"))                                                         # Load the auwerx package
     self.r_create_Pheno_aligner = ro.r["create.Pheno_aligner"]                         # Map the create.Pheno_aligner function
     self.r_calculate_all_pvalue_parallel = ro.r["calculate.all.pvalue.parallel"]       # Map the calculate.all.pvalue.parallel function
     self.r_PheWASManhattan = ro.r["PheWASManhattan"]                                   # Map the PheWASManhattan function
     self.r_Stop = ro.r["throwStopError"]                                   # Map the PheWASManhattan function
     self.r_PyLoadData    = ro.r["PyLoadData"]          # Map the load function
     logger.info("Initialization of PheWAS done !")
开发者ID:pjotrp,项目名称:genenetwork2,代码行数:10,代码来源:phewas_analysis.py


注:本文中的utility.logger.info函数示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。