repository structure
Browse files- .gitignore +0 -0
- dpacman.egg-info/PKG-INFO +9 -0
- dpacman.egg-info/SOURCES.txt +6 -0
- dpacman.egg-info/dependency_links.txt +1 -0
- dpacman.egg-info/top_level.txt +1 -0
- environment.yaml +34 -0
- setup.py +13 -0
.gitignore
ADDED
|
File without changes
|
dpacman.egg-info/PKG-INFO
ADDED
|
@@ -0,0 +1,9 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
Metadata-Version: 2.4
|
| 2 |
+
Name: dpacman
|
| 3 |
+
Version: 0.0.1
|
| 4 |
+
Summary: Generation of DNA-Binding Proteins
|
| 5 |
+
Home-page: https://huggingface.co/ChatterjeeLab/DPACMAN
|
| 6 |
+
Author:
|
| 7 |
+
Author-email:
|
| 8 |
+
Dynamic: home-page
|
| 9 |
+
Dynamic: summary
|
dpacman.egg-info/SOURCES.txt
ADDED
|
@@ -0,0 +1,6 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
README.md
|
| 2 |
+
setup.py
|
| 3 |
+
dpacman.egg-info/PKG-INFO
|
| 4 |
+
dpacman.egg-info/SOURCES.txt
|
| 5 |
+
dpacman.egg-info/dependency_links.txt
|
| 6 |
+
dpacman.egg-info/top_level.txt
|
dpacman.egg-info/dependency_links.txt
ADDED
|
@@ -0,0 +1 @@
|
|
|
|
|
|
|
| 1 |
+
|
dpacman.egg-info/top_level.txt
ADDED
|
@@ -0,0 +1 @@
|
|
|
|
|
|
|
| 1 |
+
|
environment.yaml
ADDED
|
@@ -0,0 +1,34 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
# reasons you might want to use `environment.yaml` instead of `requirements.txt`:
|
| 2 |
+
# - pip installs packages in a loop, without ensuring dependencies across all packages
|
| 3 |
+
# are fulfilled simultaneously, but conda achieves proper dependency control across
|
| 4 |
+
# all packages
|
| 5 |
+
# - conda allows for installing packages without requiring certain compilers or
|
| 6 |
+
# libraries to be available in the system, since it installs precompiled binaries
|
| 7 |
+
# in case of errors look here: https://pytorch.org/get-started/previous-versions/
|
| 8 |
+
|
| 9 |
+
name: dpacman
|
| 10 |
+
|
| 11 |
+
channels:
|
| 12 |
+
- conda-forge
|
| 13 |
+
- defaults
|
| 14 |
+
|
| 15 |
+
# it is strongly recommended to specify versions of packages installed through conda
|
| 16 |
+
# to avoid situation when version-unspecified packages install their latest major
|
| 17 |
+
# versions which can sometimes break things
|
| 18 |
+
|
| 19 |
+
# current approach below keeps the dependencies in the same major versions across all
|
| 20 |
+
# users, but allows for different minor and patch versions of packages where backwards
|
| 21 |
+
# compatibility is usually guaranteed
|
| 22 |
+
|
| 23 |
+
dependencies:
|
| 24 |
+
- python=3.10
|
| 25 |
+
|
| 26 |
+
- pip>=23
|
| 27 |
+
- pip:
|
| 28 |
+
- rootutils
|
| 29 |
+
- pandas==2.2.3
|
| 30 |
+
- lxml==5.3.0
|
| 31 |
+
- pymex==0.9.31
|
| 32 |
+
- gitpython==3.1.44
|
| 33 |
+
- matplotlib
|
| 34 |
+
- -e .
|
setup.py
ADDED
|
@@ -0,0 +1,13 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
#!/usr/bin/env python
|
| 2 |
+
|
| 3 |
+
from setuptools import find_packages, setup
|
| 4 |
+
|
| 5 |
+
setup(
|
| 6 |
+
name="dpacman",
|
| 7 |
+
version="0.0.1",
|
| 8 |
+
description="Generation of DNA-Binding Proteins",
|
| 9 |
+
author="",
|
| 10 |
+
author_email="",
|
| 11 |
+
url="https://huggingface.co/ChatterjeeLab/DPACMAN",
|
| 12 |
+
packages=find_packages(),
|
| 13 |
+
)
|