<html><head><meta http-equiv="Content-Type" content="text/html; charset=utf-8"></head><body style="word-wrap: break-word; -webkit-nbsp-mode: space; line-break: after-white-space;" class="">Like Elaine says, skipping the assignment entirely is perfectly acceptable.  If it’s easier to assign something than skip it, assign None.<div class=""><br class=""></div><div class="">—Eric<br class=""><div class="">
<div style="caret-color: rgb(0, 0, 0); color: rgb(0, 0, 0); font-family: Helvetica; font-size: 12px; font-style: normal; font-variant-caps: normal; font-weight: normal; letter-spacing: normal; orphans: auto; text-align: start; text-indent: 0px; text-transform: none; white-space: normal; widows: auto; word-spacing: 0px; -webkit-text-size-adjust: auto; -webkit-text-stroke-width: 0px; text-decoration: none;" class=""><span class="Apple-tab-span" style="white-space: pre;"><br class="Apple-interchange-newline">     </span>Eric Pettersen</div><div style="caret-color: rgb(0, 0, 0); color: rgb(0, 0, 0); font-family: Helvetica; font-size: 12px; font-style: normal; font-variant-caps: normal; font-weight: normal; letter-spacing: normal; orphans: auto; text-align: start; text-indent: 0px; text-transform: none; white-space: normal; widows: auto; word-spacing: 0px; -webkit-text-size-adjust: auto; -webkit-text-stroke-width: 0px; text-decoration: none;" class=""><span class="Apple-tab-span" style="white-space: pre;">    </span>UCSF Computer Graphics Lab</div><div style="caret-color: rgb(0, 0, 0); color: rgb(0, 0, 0); font-family: Helvetica; font-size: 12px; font-style: normal; font-variant-caps: normal; font-weight: normal; letter-spacing: normal; orphans: auto; text-align: start; text-indent: 0px; text-transform: none; white-space: normal; widows: auto; word-spacing: 0px; -webkit-text-size-adjust: auto; -webkit-text-stroke-width: 0px; text-decoration: none;" class=""><br class=""></div></div><div><blockquote type="cite" class=""><div class="">On Jan 23, 2020, at 10:03 AM, Elaine Meng <<a href="mailto:meng@cgl.ucsf.edu" class="">meng@cgl.ucsf.edu</a>> wrote:</div><br class="Apple-interchange-newline"><div class=""><div class="">Hi Joe,<br class="">Maybe I’m misunderstanding the issue, but can’t you just skip assigning a value to that residue if it does not have a score?  That would be the same as omitting the residue from an attribute assignment file.<br class=""><br class="">It depends how you want to use the attribute: do you want those residues to have the attribute but assigned as none, or do you want them simply not to have that attribute?<br class=""><br class="">An analogous situation is the amino acid hydrophobicity attribute. The following command-line specifier designates residues (such as water or nucleic acids) that lack a Kyte-Doolittle hydrophobicity assignment:<br class=""><br class="">:/^kdHydrophobicity <br class=""><br class="">… and the Render by Attribute tool and rangecolor command both have options as to what you want to do with such “no-value” atoms or residues.<br class=""><br class="">To summarize, you may not need to assign some kind of null value, but simply skip assigning anything.<br class="">Best,<br class="">Elaine<br class="">-----<br class="">Elaine C. Meng, Ph.D.<br class="">UCSF Chimera(X) team<br class="">Department of Pharmaceutical Chemistry<br class="">University of California, San Francisco<br class=""><br class=""><blockquote type="cite" class="">On Jan 23, 2020, at 2:51 AM, Healey, Joseph <<a href="mailto:J.Healey.1@warwick.ac.uk" class="">J.Healey.1@warwick.ac.uk</a>> wrote:<br class=""><br class="">Hi Chimera team,<br class=""><br class="">I’ve made some good headway with the subject of this previous thread (a relatively simple Bio.pairwise2 alignment approach seems to serve to associate chains reasonably well. One further thing I’d like to clarify, is how missing data is stored for a residue attribute in the case of the renderbyattribute functionality?<br class=""><br class="">e.g. if I have the structure sequence, and the scores (just using integers as a simple example for now):<br class="">model.residues = MEREYV<br class="">Scores = 192984<br class=""><br class="">I can assign those scores reasonable easily as discussed with something to the effect of:<br class=""><br class="">for res, score in zip(model.residues, scores):<br class="">     setattr(res, “attributeName”, score)<br class=""><br class="">If in the case I have scores with missing data however, what value for missing is acceptable/expected by chimera (“”, None etc)?<br class=""><br class="">E.g:<br class="">Scores = 192-84<br class=""><br class="">In which case I envisage doing something like:<br class=""><br class="">for res, score in zip(model.residues, scores):<br class="">    if score == “-“:<br class="">         setattr(res, “attributeName, “”)  # Or whatever the allowable character/value is?<br class="">    else:<br class="">         setattr(res, “attributeName”, score)<br class=""><br class="">Many thanks,<br class=""><br class="">Joe<br class=""></blockquote><br class=""><br class="">_______________________________________________<br class="">Chimera-users mailing list: <a href="mailto:Chimera-users@cgl.ucsf.edu" class="">Chimera-users@cgl.ucsf.edu</a><br class="">Manage subscription: <a href="http://plato.cgl.ucsf.edu/mailman/listinfo/chimera-users" class="">http://plato.cgl.ucsf.edu/mailman/listinfo/chimera-users</a><br class=""><br class=""></div></div></blockquote></div><br class=""></div></body></html>