list_parser.add_argument('-j','--job-ids',metavar='ID',nargs='*',type=int,help='List only the jobs with the given ids (by default, all jobs are listed)')
list_parser.add_argument('-a','--print-array-jobs',action='store_true',help='Report only the jobs with the given array ids. If specified, a single job-id must be given as well.')
list_parser.add_argument('-x','--print-dependencies',action='store_true',help='Print the dependencies of the jobs as well.')
list_parser.add_argument('-o','--ids-only',action='store_true',help='Prints ONLY the job ids (so that they can be parsed by automatic scripts).')
list_parser.add_argument('-s','--status',nargs='+',choices=Status,default=Status,help='Delete only jobs that have the given statuses; by default all jobs are deleted.')