Skip to content

Añadido módulo PPIIMoL para detección de hélices PPII #169

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

Open
wants to merge 19 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 12 additions & 0 deletions .gitattributes
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
# Forzar line endings LF para código
* text=auto eol=lf
*.py text eol=lf
*.md text eol=lf
*.txt text eol=lf

# Tratar binarios como binarios
*.png binary
*.jpg binary
*.gif binary
*.pdb binary

71 changes: 30 additions & 41 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,41 +1,30 @@
# Compiled source #
###################
*.com
*.class
*.dll
*.exe
*.o
*.so
*.pyc
*.py.swp

# Packages #
############
# it's better to unpack these files and commit the raw source
# git has its own built in compression methods
*.7z
*.dmg
*.gz
*.iso
*.rar
*.tar
*.zip

# Logs and databases #
######################
*.log
*.sql
*.sqlite

# OS generated files #
######################
.DS_Store*
ehthumbs.db
Icon?
Thumbs.db
*~
*.bak

# IDE #
#######
.idea
# Archivos y carpetas de Python
__pycache__/
*.py[cod]
*.pyc
*.pyo
*.pyd

# Configuración de entornos virtuales
.env
ENV/
.venv
env/
venv/
*.env

# Archivos de PyMOL
*.pse
*.log
*.pdbqt
*.out

# Archivos temporales del sistema
.DS_Store
Thumbs.db
ehthumbs.db
desktop.ini

# Archivos de VSCode
.vscode/
.ipynb_checkpoints/
Loading