Skip to content

Reading and Analysis for DEPTH values. Part of the code is obtained from GARLIC software

License

LGPL-3.0, GPL-3.0 licenses found

Licenses found

LGPL-3.0
COPYING.LESSER
GPL-3.0
COPYING
Notifications You must be signed in to change notification settings

neeleshsoni21/DeepScore

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

13 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation


Software Information


DeepScore is a software to analyze DEPTH values generated from DEPTH software.


Installation


Please refer to INSTALL file in the distribution.


Usage and Requirements


DEPTH code: if depth-generated files are not provided as input


Compiling DEPTH: See Also; http://cospi.iiserpune.ac.in/depth/download/


cd deepscore/Externals/DEPTH/bin make

To run the DeepScore with an example file, use the following:

python simple_API.py

This will plot the residue-wise depth values and atomwise depth values. The actual values can be accessed using DeepScore object as follows:

#DEPTH values are stored in ds_obj.ResidueDepths python dictionary. #Key-value pairs: key: (chain,residuenumber), value: [DEPTH value , Standard deviation]

for Residue_ID, Depth_vals in ds_obj.ResidueDepths.items():
    chain,residuenumber = Residue_ID
    DEPTH_value , Depth_SD =  Depth_vals

for Residue_ID, Depth_vals in ds_obj.AtomicDepths.items():
    chain,residuenumber,atomtype = Residue_ID
    DEPTH_value , Depth_SD =  Depth_vals

About

Reading and Analysis for DEPTH values. Part of the code is obtained from GARLIC software

Resources

License

LGPL-3.0, GPL-3.0 licenses found

Licenses found

LGPL-3.0
COPYING.LESSER
GPL-3.0
COPYING

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages