Child pages
  • Metainformation Query Designer Element
Skip to end of metadata
Go to start of metadata

You are viewing an old version of this page. View the current version.

Compare with Current View Page History

Version 1 Current »

The metainformation is added when you create / edit the schema with the Query Designer. It is not required for running the schema and is skipped when the schema is created manually, for example:

#Open Reading Frame surrounded by repeat units

query ORF-Repeats {

    Repeat {
        type: repeats;
        min-length: 10;
    }

    ORF { type: orf; }

    Repeat.left--ORF.unit {
        type: distance;
        distance_type:
        end-to-start;
        min: 0;
        max: 5000;
    }
    ORF.unit--Repeat.right {
        type: distance;
        distance_type: end-to-start;
        min: 0;
        max: 5000;
    }
}



  • No labels