view jb2_urlconf.py @ 53:bdfa6a7c4543 draft

planemo upload for repository https://github.com/usegalaxy-eu/temporary-tools/tree/master/jbrowse2 commit 44df75b3714aa9e02983e0b67ef43fc0eee4a8d4-dirty
author fubar
date Thu, 07 Mar 2024 09:23:06 +0000
parents 7e867ff86e44
children 94264fe60478
line wrap: on
line source


inconf = open('config.json', 'r').readlines()
with open('config.json.local', 'w') as bak:
    bak.write(''.join(inconf))
urlbase = "https://galaxy.genomicsvl-students.cloud.edu.au/jbrowse/hum/"
utag = '"uri":'
for i, row in enumerate(inconf):
    ispath = False
    if row.strip().startswith(utag):
            ispath = True
            parth = row.split(utag)[1].strip().replace('"','').replace("'",'')
            inconf[i] = '%s "%s%s"' % (utag, urlbase, parth)
with open('config.json', 'w') as outconf:
    outconf.write(''.join(inconf))