5-6. Locus field

If your data has values across multiple chromosomes, and you want the data table to be sorted correctly by genomic location, you need to let the research portal know which column in the data has the genomic location info, because this sorting requires multiple steps. The research portal will sort the data by chromosomes first, and sort items in each chromosome next. 

Format

"locus field":"locus"

Example

{
    "data convert":[
        {"type":"join","field name":"locus","fields to join":["#chr","pos"],"join by":":"},
        {"type":"join","field name":"allele","fields to join":["ref","alt"],"join by":"/"},
        {"type":"raw","field name":"rsID","raw field":"id"},
        {"type":"raw","field name":"P-value","raw field":"pval"},
        {"type":"calculate","field name":"pval_ng_log10","raw field":"pval","calculation type":"-log10"} ],
    "top rows":["locus","allele","rsID","P-value"],
    "locus field":"locus"
}