﻿id	summary	reporter	owner	description	type	status	priority	milestone	component	version	resolution	keywords	cc	blockedby	blocking	notify_on_close	platform	project
1346	Same model used multiple times in model hierarchy	Tristan Croll	Eric Pettersen	"If I do:

{{{
ids = '''1a3z 1a4a 1aiz 1cc3 1cuo 1cur 1fwx 1gyc 1iby 1ifp 1iuz 1joi 1kbv 1ov8 1qhq 1qni 1rcy 1rkr 1spf 1uri 1v5u 1vlx 2aan 2aza 2ccw 2cua 2dv6 2iaa 2mry 2n0 2n0m 2plt 2q9o 2qpd 2zoo 3ay2 3ayf 3cg8 3eh5 3fsa 3gyr 3kw8 3msw 3s8f 3s8g 3sbp 3t9w 3tas 3wia 3wkq 3wni 3zbm 4f2f 4gy4 4hcf 4kns 4w1t 4w9z 4ysa 4ysq 4yss 4yst 5akr 5i5m 5tk2 5xnm'''.split()

from chimerax.core.models import Model
from chimerax.core.commands import open
model_container = Model('models', session)
session.models.add([model_container])
for pdbid in ids:
    try:
        m = open.open(session, pdbid)[0]
    except:
        print(""Failed on {}"".format(pdbid))
        continue
    m.display = False
    model_container.add([m])
}}}
   
... then the loop runs crazily slow (after ~15 min it's only up to 2aza), while fetching in a Bash loop using phenix.fetch_pdb is done in ~30 sec. "	defect	closed	major		Input/Output		fixed		Tom Goddard				all	ChimeraX
