>
> Recently, someone (I'm sorry, I can't recall who, and I couldn't find
> the post in question) posted a extremely useful scheme script
> to refine
> residues in a sphere centered around the active residue.
That was Paul. (Who else? ;-) )
> I was wondering if
> anyone knows of a way to alter the script (reproduced below)
> from a key
> binding to a scheme function, such that it can then be called with
> 'stepped-refine-protein-with-refine-func'?
If no one got back to you on this one in the meantime, you might try something
like the following quick-and-dirty approach:
---
(define (stepped-sphere-refine imol)
(let ((imol-map (imol-refinement-map)))
(if (not (valid-map-molecule? imol-map))
(info-dialog "Oops, must set map to refine to")
(let ((current-steps/frame (dragged-refinement-steps-per-frame))
(refine-func
(lambda (chain-id res-no)
(set-go-to-atom-chain-residue-atom-name chain-id res-no "CA")
(let ((active-atom (active-residue)))
(if (not (list? active-atom))
(format #t "No active atom~%")
(let* ((centred-residue (list-head (cdr active-atom) 3))
(other-residues (residues-near-residue imol
centred-residue 4))
(all-residues (if (list? other-residues)
(cons centred-residue
other-residues)
(list centred-residue))))
(format #t "imol: ~s residues: ~s~%" imol
all-residues)
(refine-residues imol all-residues)
(accept-regularizement)
(rotate-y-scene 30 0.6)))))))
(set-dragged-refinement-steps-per-frame 100)
(stepped-refine-protein-with-refine-func imol refine-func 1)
(set-dragged-refinement-steps-per-frame current-steps/frame)))))
---
JED
--------------------------------------------------------------------------
AstraZeneca UK Limited is a company incorporated in England and Wales with
registered number: 03674842 and a registered office at 15 Stanhope Gate, London
W1K 1LN.
Confidentiality Notice: This message is private and may contain confidential,
proprietary and legally privileged information. If you have received this
message in error, please notify us and remove it from your system and note that
you must not copy, distribute or take any action in reliance on it. Any
unauthorised use or disclosure of the contents of this message is not permitted
and may be unlawful.
Disclaimer: Email messages may be subject to delays, interception, non-delivery
and unauthorised alterations. Therefore, information expressed in this message
is not given or endorsed by AstraZeneca UK Limited unless otherwise notified by
an authorised representative independent of this message. No contractual
relationship is created by this message by any person unless specifically
indicated by agreement in writing other than email.
Monitoring: AstraZeneca UK Limited may monitor email traffic data and content
for the purposes of the prevention and detection of crime, ensuring the
security of our computer systems and checking Compliance with our Code of
Conduct and Policies.