Mercurial > repos > fubar > jbrowse2
comparison jb2_webserver.py @ 17:4c201a3d4755 draft
planemo upload for repository https://github.com/usegalaxy-eu/temporary-tools/tree/master/jbrowse2 commit a37bfdfc108501b11c7b2aa15efb1bd16f0c4b66
author | fubar |
---|---|
date | Sun, 28 Jan 2024 06:48:52 +0000 |
parents | b04fd993b31e |
children | f728cf0df71d |
comparison
equal
deleted
inserted
replaced
16:1fe91657bfd6 | 17:4c201a3d4755 |
---|---|
167 type=int, | 167 type=int, |
168 default=DEFAULT_PORT, | 168 default=DEFAULT_PORT, |
169 help=f"Port to listen on (default: {DEFAULT_PORT})", | 169 help=f"Port to listen on (default: {DEFAULT_PORT})", |
170 ) | 170 ) |
171 parser.add_argument( | 171 parser.add_argument( |
172 "--bind", default="0.0.0.0", help="IP address to bind to (default: 0.0.0.0)" | 172 "--bind", |
173 default="0.0.0.0", | |
174 help="IP address to bind to (default: 0.0.0.0)", | |
173 ) | 175 ) |
174 args = parser.parse_args() | 176 args = parser.parse_args() |
175 | 177 |
176 handler = functools.partial(RangeRequestHandler, directory=args.root) | 178 handler = functools.partial(RangeRequestHandler, directory=args.root) |
177 | 179 |