'NODENAME'=>['(NODELIST LIKE :node1 OR CPULIST LIKE :node2)',[':node1',':node2']],
'TAGS'=>['TAGS = :tags',':tags'],
'NUM_NODES_INT'=>['NUM_NODES BETWEEN :min_nodes AND :max_nodes',[':min_nodes',':max_nodes']],
'NUM_CORES_INT'=>['NUM_CORES BETWEEN :min_cores AND :max_cores',[':min_cores',':max_cores']],
'WALLTIME_INT'=>['WALLTIME BETWEEN :min_walltime AND :max_walltime',[':min_walltime',':max_walltime']],
'PENDING_INT'=>['(START-SUBMIT) BETWEEN :min_pending AND :max_pending',[':min_pending',':max_pending']],
'DURATION_INT'=>['(END-START) BETWEEN :min_duration AND :max_duration',[':min_duration',':max_duration']],
'CORE_DURATION_INT'=>['(NUM_CORES*(END-START)) BETWEEN :min_core_duration AND :max_core_duration',[':min_core_duration',':max_core_duration']],
'NUM_NODES_INT'=>['NUM_NODES BETWEEN :min_nodes AND :max_nodes','NUM_NODES >=:min_nodes','NUM_NODES <=:max_nodes',[':min_nodes',':max_nodes']],
'NUM_CORES_INT'=>['NUM_CORES BETWEEN :min_cores AND :max_cores','NUM_CORES >=:min_cores','NUM_CORES <=:max_cores',[':min_cores',':max_cores']],
'WALLTIME_INT'=>['WALLTIME BETWEEN :min_walltime AND :max_walltime','WALLTIME >=:min_walltime','WALLTIME <=:max_walltime',[':min_walltime',':max_walltime']],
'PENDING_INT'=>['(START-SUBMIT) BETWEEN :min_pending AND :max_pending','(START-SUBMIT) >=:min_pending','(START-SUBMIT) <=:max_pending',[':min_pending',':max_pending']],
'DURATION_INT'=>['(END-START) BETWEEN :min_duration AND :max_duration','(END-START) >=:min_duration','(END-START) <=:max_duration',[':min_duration',':max_duration']],
'CORE_DURATION_INT'=>['(NUM_CORES*(END-START)) BETWEEN :min_core_duration AND :max_core_duration','(NUM_CORES*(END-START)) >=:min_core_duration','(NUM_CORES*(END-START)) <=:max_core_duration',[':min_core_duration',':max_core_duration']],
<p-dropdown*ngIf="selected_search_option=='Live'"[options]="live_option"[(ngModel)]="selected_live_option"placeholder="Select Live Option"[showClear]="true"[style]="{'minWidth':'160px','width':'160px'}"></p-dropdown>