I have used Modeller to to produce linear peptide. When I refine the linear peptide using relax protocol an peptide with for instance AAA is shorted to AA. How do I prevent this from happening. I am using relax.linuxgccrelease -database /home/knut/rosetta/rosetta_database -in:file:native $f -out:prefix relaxed_ -out:nstruct 1 this command with these options.
sed or awk would be the fastest way. I’m not enough of an awk master to give you the command but awk will do it with a carefully crafted command line. In sed, try something like:
sed "s/0.00 /1.00 /g"
on all your filenames. (This will also set your B-factors to 1; you can learn sed/awk and regular expressions if you want to change only the occupancies column.)