d19f211130de38bb931bbf101df7c6d0698d6e56,prody/dynamics/functions.py,,calcENM,#Any#Any#Any#Any#Any#Any#Any#,351
Before Change
model = "gnm"
elif model is ANM:
model = "anm"
elif isinstance(model, str):
model = model.lower().strip()
else:
raise TypeError("invalid type for model: {0}".format(type(model)))
After Change
elif model is ANM:
model = "anm"
else:
model = str(model).lower().strip()
if trim is reduceModel:
trim = "reduce"
In pattern: SUPERPATTERN
Frequency: 3
Non-data size: 5
Instances
Project Name: prody/ProDy
Commit Name: d19f211130de38bb931bbf101df7c6d0698d6e56
Time: 2018-02-27
Author: shz66@pitt.edu
File Name: prody/dynamics/functions.py
Class Name:
Method Name: calcENM
Project Name: GPflow/GPflow
Commit Name: 6388133f7bf8f290661bc1a5db917f2a71762bab
Time: 2020-04-08
Author: st--@users.noreply.github.com
File Name: gpflow/utilities/bijectors.py
Class Name:
Method Name: positive
Project Name: prody/ProDy
Commit Name: 1c01f08cd378eabf223345e4ac7f0357bbf93649
Time: 2018-02-26
Author: shz66@pitt.edu
File Name: prody/dynamics/functions.py
Class Name:
Method Name: calcENM