list_parser=subparsers.add_parser('serie',help="Batch inversion pipeline over a directory of Sentinel-1 images")
list_parser.add_argument('-modeldir',action='store',required=True,help='Directory to find tensorflow model (dry or wet)')
list_parser.add_argument('-modeldir',action='store',required=True,help='Directory to find both wet and dry tensorflow model')
list_parser.add_argument('-modelchoice',action='store',required=False,help='[Optional] Results text file from gpm pipeline')
list_parser.add_argument('-sardir',action='store',required=True,help='Directory to find Sentinel-1 images ')
list_parser.add_argument('-sardirtype',choices=['snap','s2tile'],default='s2tile',required=False,help='[Optional] Choose between Sentinel-1 images processed by ESA-SNAP software ("Sigma0_VV.img" and "incidenceAngleFromEllipsoid.img" in .data directory) \
AND Sentinel-1 images processed by SoilMoistureBatchExtractAndMosaic2S2Tile.py')