Skip to content

Commit

Permalink
Merge pull request #281 from Steinbeck-Lab/fix-3d-depict
Browse files Browse the repository at this point in the history
To fix the bad gate way error by openbabel for 3d depict
  • Loading branch information
Kohulan authored Oct 16, 2024
2 parents 9d068f0 + 7e0fe0f commit 35d10a1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/Livewire/MoleculeDepict3d.php
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ class MoleculeDepict3d extends Component
#[Computed]
public function source()
{
return env('CM_API').'depict/3D?smiles='.urlencode($this->smiles).'&height='.$this->height.'&width='.$this->width.'&CIP='.$this->CIP.'&toolkit=openbabel';
return env('CM_API').'depict/3D?smiles='.urlencode($this->smiles).'&height='.$this->height.'&width='.$this->width.'&CIP='.$this->CIP.'&toolkit=rdkit';
}

public function render()
Expand Down

0 comments on commit 35d10a1

Please sign in to comment.