<< < 8 9 10 11 12 13   ∑:312  Sort:Date

BioPerl - Perl Bioinformatics Toolkit
Where to find FAQ (Frequently Asked Questions) on BioPerl - Perl toolkit for computational molecular biology? Here is a list of tutorials to answer many frequently asked questions compiled by FYIcenter.com team on BioPerl - Perl toolkit for computational molecular biology. What Is BioPerl BioPerl Mo...
2023-04-17, 795🔥, 0💬

Using Embedded 3Dmol Viewer
Where to find FAQ (Frequently Asked Questions) on Using Embedded 3Dmol Viewer? Here is a list of tutorials to answer many frequently asked questions compiled by FYIcenter.com team on Using Embedded 3Dmol Viewer. What Is Embedded 3Dmol Viewer Assign Embedded 3Dmol Viewer to DIV Multiple Selections wi...
2023-09-10, 794🔥, 0💬

About OBF (Open Bioinformatics Foundation)
Where to find FAQ (Frequently Asked Questions) in understanding what is OBF (Open Bioinformatics Foundation)? Here is a list of tutorials to answer many frequently asked questions compiled by FYIcenter.com team in understanding what is OBF (Open Bioinformatics Foundation). What Is OBF (Open Bioinfor...
2023-02-04, 786🔥, 0💬

Sequence Score against PSSM with Bio.motifs
How to Calculate Sequence Score against PSSM with Bio.motifs? With the motif PSSM (Position-Specific Scoring Matrix) defined in the previous tutorial, we can define a matching score of any given sequence against the motif: score = sum_over_j(PSSM[S[j], j]) where: S[i] is a given sequence PSSM[i, j] ...
2023-06-19, 780🔥, 0💬

Show InChI String on Ketcher
How to display the InChI string of the molecule in Ketcher editor? You can follow steps below to display the InChI string of the molecule in Ketcher editor. 1. Open Ketcher editor as shown in previous tutorial. 2. Select the "Benzene" button in the template toolbar at the bottom of the editor window...
2023-10-27, 772🔥, 0💬

Search History with Bio.Entrez for Subsequent Calls
How to Use Search History with Bio.Entrez for Subsequent Calls? If use Bio.Entrez.esearch() and found a large number of matches, you can use the history feature to retrieve matched records in multiple sequence Bio.Entrez.efetch() calls. 1. Turn on the history feature in the esearch() call with the u...
2023-09-10, 769🔥, 0💬

Motif ICM with Bio.motifs
How to Calculate Motif ICM with Bio.motifs Module? ICM (Information Content Matrices) represents how important of each position over others. ICM can be expressed as: ICM[i,j] = PPM[i,j]*(IC t - U[j]) where: PPM[i,j] is the Position Probability Matrix IC t is the total IC: log 2 (n) n is the number o...
2023-05-31, 767🔥, 0💬

3Dmol.js Bug - data-ui=true Impacts on Selection
Why is the default style done after removing data-ui="true" in the embedded 3Dmol viewer? There seems to be code bug in the 3Dmol.js library. Here is an HTML code example, Embedded-Viewer-data-ui-Bug.ht ml,that contains 2 embedded viewers: one with data-ui="true" and the other without data-ui="true"...
2023-09-10, 760🔥, 0💬

Search NCBI Databases with Bio.Entrez.esearch()
How to Search NCBI Databases with Bio.Entrez.esearch() function? Bio.Entrez.esearch() function allows you to search NCBI Databases with a given criteria. It uses the Entrez Web services provided by www.ncbi.nlm.nih.gov. 1. Search in PubMed for publications that include Biopython in their title. It r...
2023-08-09, 756🔥, 0💬

Global Query on All NCBI Databases with Bio.Entrez.egquery()
How to Global Query on All NCBI Databases with Bio.Entrez.egquery() function? Bio.Entrez.egquery() function allows you to perform a global search on all NCBI Databases for a given key word. It uses the Entrez Web services provided by www.ncbi.nlm.nih.gov. Here is an example on how to do a global sea...
2023-08-25, 751🔥, 0💬

Scaling Issue on Importing Ketcher File
Why is my reaction schema scaled badly when imported from the Ketcher editor UI? The Ketcher editor UI seems to have a code bug. When a reaction schema stored in a Ketcher file is imported from the editor user interface, atom locations and the reaction arrow may be scaled down or up when mapping to ...
2024-01-31, 725🔥, 0💬

Double Stranded DNA, mRNA and Transcription
What are Double Stranded DNA and mRNA sequences? A Double Stranded DNA sequence actually contains two nucleotide strands. Here is a made-up example: DNA coding strand (aka Crick strand, strand +1) 5' ATGGCCATTGTAATGGGCCGCTGAAAGGGT GCCCGATAG3' DNA template strand (aka Watson strand, strand −1) which ...
2023-03-17, 721🔥, 0💬

Motif ICM as Relative Divergence with Bio.motifs
How to Calculate Motif ICM as Relative Divergence with Bio.motifs module? ICMRD (Information Content Matrices as Relative Divergence) represents how different a given PPM is from the uniform distribution. ICMRD can be expressed as: ICMRD[i,j] = PPM[i,j]*PSSM[i,j] where: PPM[i,j] is the Position Prob...
2023-05-31, 719🔥, 0💬

Assign Embedded 3Dmol Viewer to DIV
How to assign Embedded 3Dmol Viewer to a "div" element? Here is an HTML code example, Embedded-Viewer-PDB.html, that assigns the Embedded 3Dmol Viewer to in "div" element. It also uses "data-*" attributes to load a protein from the PDB Websites, creates a selection from chain A and displays it in ca...
2023-01-30, 708🔥, 0💬

Molecule Structure with Directed Bonds
How to specify a directed bond at a stereocenter in a molecule structure in Ketcher file format? You need to use the optional "stereo" property to specify a directed bond at a stereocenter in a molecule structure. For example: "stereo": 1 - for a upward bond "stereo": 6 - for a downward bond Note th...
2024-03-07, 697🔥, 0💬

UI Components of Embedded 3Dmol Viewer
What functions are supported by UI components on the Embedded 3Dmol Viewer? UI components on the Embedded 3Dmol Viewer support the following functions: 1. Model Data Input: Accessible through the first icon on the left. You can load PDB protein data from the online PDB database, or molecule compound...
2023-09-10, 665🔥, 0💬

"-o svg -xd -d" Bug in Open Babel 3.1.1
Why "obabel ... -o svg -xd -d" is not able to remove hydrogens? It seems to be code bug in the "obabel" command in Open Babel 3.1.1 release. In Open Babel 3.1.1 release, options -xd and -d are not respected together for SVG output in the "obabel -i sdf -o svg -xC -xt -xP400 -xd -d" command. For exam...
2023-01-24, 665🔥, 0💬

Multiple Selections with Embedded 3Dmol Viewer
How to create multiple selections apply different styles with Embedded 3Dmol Viewer? In order to create a separate selection, you need add a suffix code to the "data-select" attribute name as "data-select{code}". Then other selection related attributes can use the same suffix code to refer to the se...
2023-01-30, 609🔥, 0💬

$3Dmol.download('pdb:...', ...) - Download PDB Protein
How to download PDB Protein Data with the $3Dmol.download() method? The syntax to download PDB Protein Data with the $3Dmol.download() method is shown below: $3Dmol.download("pdb:{PDB_ID}" ,viewer, options, callback) -&gt; {$3Dmol.GLModel} viewer - The $3Dmol.GLViewer instance where the download...
2023-09-10, 535🔥, 0💬

Load Data by URL into Embedded 3Dmol Viewer
How to load data by URL into the Embedded 3Dmol Viewer? You can use "data-href" and "data-type" attributes on the DIV element to load molecule data from a URL into the Embedded 3Dmol Viewer. Here is an HTML code example, Embedded-Viewer-data-href.html ,that loads a Benzene molecule in SDF format wit...
2023-09-10, 532🔥, 0💬

Start Online 3Dmol Viewer on Linux
How to start Online 3Dmol Viewer on my local server? If you have installed the Online 3Dmol Viewer in your home directory as shown in the previous tutorial, you can start and test it with these steps: 1. Go to the Online 3Dmol Viewer directory: fyicenter$ cd 3Dmol.js/packages/learning-env ironment2....
2023-09-10, 530🔥, 0💬

Load Data from Another HTML Element
How to load molecule data from another HTML element into the Embedded 3Dmol Viewer? You can use "data-element" and "data-type" attributes on the DIV element to load molecule data another HTML element into the Embedded 3Dmol Viewer. Here is an HTML code example, Embedded-Viewer-data-element.h tml,tha...
2023-09-10, 523🔥, 0💬

Missing 3Dmol-min.js on Local 3Dmol Server
Why is my local 3Dmol server redirecting to browser to https://get.webgl.org/? If you access your local 3Dmol server with a browser, and you see the https://get.webgl.org/ Website displayed, it's most likely missing the 3Dmol-min.js file on the server. This may happen if 3Dmol server was not install...
2023-09-10, 519🔥, 0💬

Code Bug in server.py in 3Dmol Source Code
Why am I getting the "Connection refused" error when accessing my local 3Dmol Viewer? If you are getting the "Connection refused" error when accessing your hosted 3Dmol Viewer over the network, it's most likely caused by the code bug in the server's Python source code. 1. Make sure that your 3Dmol V...
2023-09-10, 513🔥, 0💬

<< < 8 9 10 11 12 13   ∑:312  Sort:Date