def build_report():
    '''build report from scratch.

    Any existing report will be overwritten.
    '''

    E.info("starting report build process from scratch")
    P.run_report(clean=True)
def update_report():
    '''update report.

    This will update a report with any changes inside the report
    document or code. Note that updates to the data will not cause
    relevant sections to be updated. Use the cgatreport-clean utility
    first.
    '''

    E.info("updating report")
    P.run_report(clean=False)
Example #3
0
def update_report():
    '''update report.'''

    E.info("updating documentation")
    P.run_report(clean=False)
Example #4
0
def build_report():
    '''build report from scratch.'''

    E.info("starting documentation build process from scratch")
    P.run_report(clean=True)
Example #5
0
def update_report():
    '''update report.'''

    E.info("updating report")
    P.run_report(clean=False)