Advertisement
iamrobot

runIndex.sh

Jan 19th, 2020
118
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 0.37 KB | None | 0 0
  1. #!/bin/bash
  2.  
  3. for i in receptor/*.pdb; do
  4.         name=`echo $i | cut -d'/' -f2 | cut -d'.' -f1`
  5.         echo $name
  6.         ./activation_index.py -structure $i -chain X -muscle ./muscle3.8.31_i86linux64
  7.         -TM1_50 86
  8.         -TM2_50 114
  9.         -TM3_50 165
  10.         -TM4_50 192
  11.         -TM5_50 244
  12.         -TM6_50 295
  13.         -TM7_50 333 -v > $name.txt
  14. done
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement