-
Notifications
You must be signed in to change notification settings - Fork 26
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
2DRMSD #56
base: main
Are you sure you want to change the base?
2DRMSD #56
Conversation
2drmsd.py script to calculate 2D RMSD after aligning with a different selection.
Hi Anees, This tool looks pretty good -- this is definitely something I want to have in loos. I have a few things that I'd like to see changed before merging, though:
parser.add_argument('--align',
help="Align selection 1 for 1st trajectory (default = CA)",
default= 'name == "CA"',
type = str) NOTE: the markdown is messing up the spacing for some reason, but it's supposed to have all of the arguments lined up under the first
traj = loos.pyloos.Trajectory(args.traj_file, system,
skip=args.skip, stride=args.stride) or if you give skip, stride and range you'd have something like
Feel free to ping me if you want to chat about any of this (either here or via email). I know this looks like a lot of stuff I'm asking for, but nearly all of the changes should be really easy, Cheers, Alan |
2drmsd.py script to calculate 2D RMSD after aligning with a different selection.