view jb2_urlconf.py @ 60:81d535970196 draft

planemo upload for repository https://github.com/usegalaxy-eu/temporary-tools/tree/master/jbrowse2 commit 403a35e1245fa5e62f4be6116a725b9e4d9c353a
author fubar
date Mon, 25 Mar 2024 02:10:05 +0000
parents 94264fe60478
children
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))