Member Site › Forums › Rosetta 3 › Rosetta 3 – General › Radius of Gyration
- This topic has 2 replies, 2 voices, and was last updated 15 years, 2 months ago by JianyiYang.
-
AuthorPosts
-
-
September 21, 2009 at 7:45 pm #382
Does anyone know how to get Rosetta3.0 to output the radius of gyration?
Thanks,
Christy -
September 22, 2009 at 1:41 pm #4194Anonymous
There are two RG methods for rosetta3’s energy function. You can find them at src/core/scoring/methods/RG_Energy.cc and RG_Energy_Fast.cc. The calculation differs slightly (I think “Fast” is the old ++ method, and the other is closer to the normal RG calculation; you should look at it yourself to choose which you want.
When you say “output”, what are you trying to do? If you want a report of the RG’s of a set of PDBs you already have, then just run the score executeable with a custom scorefunction which has one (only one) of the RG terms turned on.
https://www.rosettacommons.org/software/common/3.0/rosetta3_user_guide/app_scoring.html
For example, you can copy the standard scorefunction file /scoring/weights/standard.wts, add
rg = 1.0
to the bottom of it, and run the score app with that file passed in under the score::weights flag.
If you want RG as part of your energy function, and not just calculated at the end, then you can add it to the scorefunction at any time in the code (and sometimes from commandline). I’ll try to describe that if it’s what you wanted.
-
September 22, 2009 at 6:54 pm #4198
Thanks! I think I have that working now!
Christy
> There are two RG methods for rosetta3’s energy function. You can find them at src/core/scoring/methods/RG_Energy.cc and RG_Energy_Fast.cc. The calculation differs slightly (I think “Fast” is the old ++ method, and the other is closer to the normal RG calculation; you should look at it yourself to choose which you want.
>
> When you say “output”, what are you trying to do? If you want a report of the RG’s of a set of PDBs you already have, then just run the score executeable with a custom scorefunction which has one (only one) of the RG terms turned on.
>
> https://www.rosettacommons.org/software/common/3.0/rosetta3_user_guide/app_scoring.html
>
> For example, you can copy the standard scorefunction file /scoring/weights/standard.wts, add
>
> rg = 1.0
>
> to the bottom of it, and run the score app with that file passed in under the score::weights flag.
>
> If you want RG as part of your energy function, and not just calculated at the end, then you can add it to the scorefunction at any time in the code (and sometimes from commandline). I’ll try to describe that if it’s what you wanted.
>
>
-
-
-
AuthorPosts
- You must be logged in to reply to this topic.