{%extends "base.html"%} {%from "cli-output.html" import cli_output%} {%block title%}R/qtl2 bundle: QC Job Error{%endblock%} {%macro errors_table(tableid, errors)%} {%for error in errors%} {%else%} {%endfor%}
{{caption}}
Line Column Value Message
{{error.line}} {{error.column}} {{error.value}} {{error.message}}
No errors to display here.
{%endmacro%} {%block contents%}

R/qtl2 bundle: QC job Error

The R/qtl2 bundle has failed some Quality Control checks.

We list below some of the errors that need to be fixed before the data can be uploaded onto GeneNetwork.

{%if errorsgeneric | length > 0%}

Generic Errors ({{errorsgeneric | length}})

We found the following generic errors in your R/qtl2 bundle:

Missing Files

These files are listed in the bundle's control file, but do not actually exist in the bundle

{%for error in (errorsgeneric | selectattr("type", "equalto", "MissingFile"))%} {%endfor%}
Control File Key Bundle File Name Message
{{error.controlfilekey}} {{error.filename}} {{error.message}}

Other Generic Errors

{{errors_table("tbl-errors-generic", errorsgeneric| selectattr("type", "ne", "MissingFile"))}} {%endif%} {%if errorsgeno | length > 0%}

Geno Errors ({{errorsgeno | length}})

We found the following errors in the 'geno' file in your R/qtl2 bundle:
{{errors_table("tbl-errors-geno", errorsgeno[0:50])}} {%endif%} {%if errorspheno | length > 0%}

Pheno Errors ({{errorspheno | length}})

We found the following errors in the 'pheno' file in your R/qtl2 bundle:
{{errors_table("tbl-errors-pheno", errorspheno[0:50])}} {%endif%} {%if errorsphenose | length > 0%}

Phenose Errors ({{errorsphenose | length}})

We found the following errors in the 'phenose' file in your R/qtl2 bundle:
{{errors_table("tbl-errors-phenose", errorsphenose[0:50])}} {%endif%} {%if errorsphenocovar | length > 0%}

Phenocovar Errors ({{errorsphenocovar | length}})

We found the following errors in the 'phenocovar' file in your R/qtl2 bundle:
{{errorsphenocovar}} {%endif%}

stdout

{{cli_output(job, "stdout")}}

stderr

{{cli_output(job, "stderr")}}

Log

{%for msg in messages%} {{msg}}
{%endfor%}
{%endblock%}