Skip to content

Commit

Permalink
Tweaking modules
Browse files Browse the repository at this point in the history
  • Loading branch information
monteirotorres committed May 11, 2018
1 parent 7499a88 commit a62ee30
Show file tree
Hide file tree
Showing 7 changed files with 19 additions and 15 deletions.
20 changes: 12 additions & 8 deletions README.rst
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
Structuralia
============
############

This suite of python scripts was built to access the PDB database and both prepare inputs and read generated output files.

Expand All @@ -10,24 +10,26 @@ Simply run Access.py to perform some of these functions intuitively.
The Toolbox is packed up with functions that can be imported and used in your own scripts.

Prerequisites
-------------
*************

The following packages and external programs are used by Structuralia scripts and must be installed and in either the binaries path or python path.

- Python packages
Python packages
===============

- progressbar
- pandas
- biopython
- biopandas
- pathlib

- External software
External software
=================

- TM-align

AUTHOR
------
Author
******

Pedro Torres, Ph.D

Expand All @@ -37,6 +39,8 @@ University of Cambridge
Cambridge CB2 1GA

License
-------
*******

This project is licensed under GNU license, provided along with the package - see `LICENSE <LICENSE>`
This project is licensed under GNU license, provided along with the package - see `LICENSE`_.

.. _LICENSE: LICENSE
2 changes: 1 addition & 1 deletion Structuralia/AccessPDB.py
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
###############################################################################
import os
import textwrap as tw
import Toolbox as strtools
import Structuralia.Toolbox as strtools


# Main Function
Expand Down
2 changes: 1 addition & 1 deletion Structuralia/OligoState.py
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@
'''
# Imports
###############################################################################
import Toolbox as strtools
import Structuralia.Toolbox as strtools

# Dictionaries
###############################################################################
Expand Down
2 changes: 1 addition & 1 deletion Structuralia/OligoSum.py
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@
import pandas as pd
from progressbar import progressbar as pg
from pathlib import Path
import Toolbox as strtools
import Structuralia.Toolbox as strtools

# Dictionaries
###############################################################################
Expand Down
2 changes: 1 addition & 1 deletion Structuralia/Toolbox.py
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@
import Bio.PDB.Polypeptide as bpp_poly
from biopandas.pdb import PandasPdb
from progressbar import progressbar as pg
from TimeWrap import timed
from Structuralia.TimeWrap import timed

# Classes
###############################################################################
Expand Down
2 changes: 1 addition & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
[metadata]
description-file = README.md
description-file = README.rst
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,13 +12,13 @@
setup(
name = 'Structuralia',
packages = find_packages(),
version = '0.901',
version = '0.902',
description = 'A toolset to work with proteins',
long_description = long_description,
author = 'Pedro Torres',
author_email = 'monteirotorres@gmail.com',
url = 'https://github.com/monteirotorres/Structuralia',
download_url = 'https://github.com/monteirotorres/Structuralia/archive/0.901.tar.gz',
download_url = 'https://github.com/monteirotorres/Structuralia/archive/0.902.tar.gz',
keywords = ['PDB', 'structure', 'protein'],
classifiers = [],
py_modules=[
Expand Down

0 comments on commit a62ee30

Please sign in to comment.