Skip to content

Instantly share code, notes, and snippets.

@JonasR
Created June 21, 2012 16:18
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save JonasR/2966798 to your computer and use it in GitHub Desktop.
Save JonasR/2966798 to your computer and use it in GitHub Desktop.
Preparing sequences for SCWRL and then calling SCWRL on them
#!/bin/bash
for i in R178H R178C P183L D207E S293I F434L L451V E482K L484Q E506D; do
perl prepForSQRWL2.pl -i 2gjxA_sequence -mut $i > SCWRL_$i.sequence
done
for i in R178H R178C P183L D207E S293I F434L L451V E482K L484Q E506D; do
/opt/SS12-Practical/scwrl4/Scwrl4 -s SCWRL_$i.sequence -i ../2gjxA_secondD.pdb -o SCWRL_$i.pdb &>> SCWRL.log
done
#!/bin/bash
for i in R178H R178C P182L D207E S293I F434L L451V E482K L484Q E506D; do
perl prepForSQRWL2.pl -i 2gjxA_sequence -mut $i > SCWRL_$i.sequence
done
for i in R178H R178C P182L D207E S293I F434L L451V E482K L484Q E506D; do
/opt/SS12-Practical/scwrl4/Scwrl4 -s SCWRL_$i.sequence -i ../2gjxA_secondD.pdb -o SCWRL_$i.pdb &>> SCWRL.log
done
@JonasR
Copy link
Author

JonasR commented Jun 21, 2012

prepareForSQRWL2.pl can be found here: https://gist.github.com/2966806

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment