All Projects → PabloEnmanuelRamos → BioBlender21

PabloEnmanuelRamos / BioBlender21

Licence: BSD-2-Clause license
Blender plugin to process biological data and molecular work.

Programming Languages

python
139335 projects - #7 most used programming language
C++
36643 projects - #6 most used programming language

Projects that are alternatives of or similar to BioBlender21

Blender Tools
🐵 Embark Addon for Blender
Stars: ✭ 250 (+284.62%)
Mutual labels:  blender, blender-addon
RightMouseNavigation
Blender Python - Unreal Engine-style Right Mouse Viewport Navigation
Stars: ✭ 83 (+27.69%)
Mutual labels:  blender, blender-addon
NodeSharer
Node Sharer is an add-on for Blender that lets you easily share procedural materials as text strings.
Stars: ✭ 48 (-26.15%)
Mutual labels:  blender, blender-addon
DeepBump
Normal & height maps generation from single pictures
Stars: ✭ 185 (+184.62%)
Mutual labels:  blender, blender-addon
Blender-Add-on-Manager
Blender Add-on Manager to install/uninstall/update from GitHub
Stars: ✭ 130 (+100%)
Mutual labels:  blender, blender-addon
Blender Launcher
Standalone client for managing official builds of Blender 3D
Stars: ✭ 174 (+167.69%)
Mutual labels:  blender, blender-addon
m3addon
Blender Addon to import and export m3 files
Stars: ✭ 35 (-46.15%)
Mutual labels:  blender, blender-addon
Blenderdatavis
Data visualisation addon for Blender
Stars: ✭ 72 (+10.77%)
Mutual labels:  blender, blender-addon
3dn-bip
A Python library for Blender addons. Blazingly fast preview loads in Blender. Images of arbitrary size. bpy.utils.previews drop-in replacement.
Stars: ✭ 41 (-36.92%)
Mutual labels:  blender, blender-addon
VF-BlenderAutoSaveRender
Automatically saves a numbered or dated image after every render and can extend the Blender output path with dynamic variables
Stars: ✭ 34 (-47.69%)
Mutual labels:  blender, blender-addon
Blender Debugger For Vscode
Blender addon for remote debugging Blender with VS Code (and Visual Studio)
Stars: ✭ 123 (+89.23%)
Mutual labels:  blender, blender-addon
thicket
Thicket: Laubwerk Plants Add-on for Blender
Stars: ✭ 51 (-21.54%)
Mutual labels:  blender, blender-addon
Bitwrk
Bitcoin-fueled Peer-to-Peer Blender Rendering (and more)
Stars: ✭ 114 (+75.38%)
Mutual labels:  blender, blender-addon
Blenderseed
appleseed plugin for Blender
Stars: ✭ 214 (+229.23%)
Mutual labels:  blender, blender-addon
Meshroom2blender
Blender importer of meshroom datafiles: cameras, images, sparse pointcloud and obj's.
Stars: ✭ 82 (+26.15%)
Mutual labels:  blender, blender-addon
speckle-blender
speckle.systems/tag/blender/
Stars: ✭ 38 (-41.54%)
Mutual labels:  blender, blender-addon
Create Isocam
Create ISO Camera addon for Blender 2.8+
Stars: ✭ 37 (-43.08%)
Mutual labels:  blender, blender-addon
Mb Lab
MB-Lab is a character creation tool for Blender 2.80+, based off ManuelBastioniLAB
Stars: ✭ 1,078 (+1558.46%)
Mutual labels:  blender, blender-addon
pribambase
Paint pixelart textures in real time in Blender with Aseprite.
Stars: ✭ 129 (+98.46%)
Mutual labels:  blender, blender-addon
Blender-Tools
Blender Tools combining useful functions/addons, scattered across the UI.
Stars: ✭ 119 (+83.08%)
Mutual labels:  blender, blender-addon

BioBlender2.1 available for Blender 3.0

BioBlender is an addon for Blender, aimed at providing tools for the import and elaboration of biological molecules. It consists of several functions, some executed by Blender and/or its Game Engine, and some others performed by external programs, such as PyMOL, APBS etc.

It was developed by the Scientific Visualization Unit of the Institute of Clinical Physiology of the CNR of Italy in Pisa, with the contribution of several colleagues.

We have now made it an Open Project, with the intent of keeping it updated, as long as Blender keeps moving on, and of possibly introducing new, better and useful features.

More info can be found on the SciVis website (www.scivis.it) and on BioBlender.eu, where is also present the Forum

BioBlender was developed to work on Windows, Mac and Linux. Therefore each fix will need to be tested on each of these platforms. Also, as BioBlender is supposed to handle different types of molecules, we will test:

  • Single protein, multiple conformations File: "01_CaM_protein3conformations.pdb";
  • Double strand DNA fragment File "02_4IHV_dsDNA.pdb";
  • Glycoprotein (protein with sugar-like molecule attached) file "05_glycoprotein_4AY9_FSH.pdb";
  • Small protein for testing GE. File "06_1L2Y_4GE.pdb";
  • Composite protein (dimer), file: "04_Dimer_1A4U.pdb";
  • Interacting protein/DNA, file "03_3IV5_ProteinComplex.pdb".

The SciVis Team is grateful to all that will contribute to this project.

Getting Started

BioBlender is still under development

Minimum Prerequisites

Using the command line

This set up will allow you to update dynamically to the latest snapshot of BioBlender. You need to be able to use the command line and have git properly set up.

Unix/Mac

  1. Get the latest version

    mkdir ~/BioBlender
    git clone https://github.com/PabloEnmanuelRamos/BioBlender21.git ~/BioBlender
    ln -s ~/BioBlender ~/.config/blender/%BLENDER_VERSION_NUM%/scripts/addons/BioBlender
  2. Checkout whichever branch you need. If you're not sure, skip this step.

    cd ~/BioBlender
    git checkout remotes/origin/BRANCH_NAME
  3. Launch Blender and do File-->User Preferences-->Addons

  4. Search the list for BioBlender2.1 and make sure it is ticked

  5. Save user settings and restart blender

  6. To update

    cd ~/BioBlender
    git pull --all

Windows Vista and above

  1. Get the latest version of BioBlender. Assuming you only have one partition C:. If not, just replace with your drive's letter (D, E, etc).

    mkdir C:\some\directory\BioBlender
    git clone http://github.com/PabloEnmanuelRamos/BioBlender21.git C:\some\directory\BioBlender
    mklink /d "C:\Users\%username%\AppData\Roaming\Blender Foundation\Blender\%BLENDER_VERSION_NUM%\scripts\addons\BioBlender" C:\some\directory\BioBlender
    

    The mklink step will work with /d or /j, both /d and /j are good options, of the two /j requires no elevated user privileges so if /d fails, then use /j

  2. Checkout whichever branch you need. If you're not sure, skip this step.

    cd C:\some\directory\BioBlender
    git checkout remotes/origin/BRANCH_NAME
    
  3. Launch Blender and do File-->User Preferences-->Addons

  4. Search the list for BioBlender2.1 and make sure it is ticked

  5. Save user settings and restart blender

  6. To update

    cd C:\some\directory\BioBlender
    git pull --all
    
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].