Aaron Virshup

Results 63 issues of Aaron Virshup

This is a small view of the much larger issue of calculation caching. This is dependent on good semantic storage of calculation results, plus a way to determine whether two...

bug

Master list of dependencies to update: - AmberTools (16 -> 17) - PySCF (1.1 -> 1.3) - OpenMM (7 -> 7.1) - OpenBabel (???) - Docker (keep up with latest)...

The following test should pass, currently fails: ```python mol = mdt.from_pdb('1YU8') sidechain_atoms = list(mol.residues[5].sidechain) m2 = mol.copy() sa2 = list(m2.residues[5].sidechain) for atom in sa2: assert atom.molecule is m2 ```

bug

This is a residue that appears right before several missing residues: ```python mol = mdt.from_pdb('3p3k') res = mol.residues[46] ``` MDT currently shows a bond between this and the next available...

bug

```python mol = mdt.from_smiles('CCCC') print mol.write('pdb') ``` Gives ``` HETATM 1 C0 UNL 1 0.928 -0.017 -0.007 0.00 0.00 C [...] HETATM 14 H9 UNL 1 0.809 2.183 1.709 0.00...

bug

We're getting clashes and overlaps in the generated 3D structures for big complicated ring systems. To wit: ```python artim = mdt.from_inchi('InChI=1S/C15H22O5/c1-8-4-5-11-9(2)12(16)17-13-15(11)10(8)6-7-14(3,18-13)19-20-15/h8-11,13H,4-7H2,1-3H3/t8-,9-,10+,11+,13-,14-,15-/m1/s1')') artim.draw() ``` gives ![image](https://cloud.githubusercontent.com/assets/9388007/23336967/15e498a4-fb94-11e6-86dd-918e56bcd98f.png) Need to detect these as...

bug

As discussed in #229, when determining the latest tag, it would be ideal to use a general, unambiguous test for whether or not to ignore a given SCM tag. For...

No tests yet, just a build and optional publishing step

To reproduce: ``` mol = mdt.build_dna_helix('ACTGCGTA') viewer = mol.draw(display=True) viewer.ribbon() ``` ## got: ![image](https://cloud.githubusercontent.com/assets/9388007/19825917/ec21c054-9d34-11e6-8c6a-cf76aae1a3e2.png) ## Result with moldesign 0.7.2 / nbmolviz 0.6.5: ![image](https://cloud.githubusercontent.com/assets/9388007/19825931/2786a2f4-9d35-11e6-8430-a3ad08c399c4.png)

bug

This is in the most recent `master` fb2eee08faca347444dc7bbf85de2d8792ccd6f2 and also MDT. You'll also need to check out the `visualization_json` branch of MDT, or this will throw an exception because of...

bug