- How Does Metabolic Pathway Prediction Work? (2020-10-19)
- New Curated Cyanobacterial Databases in BioCyc (2020-03-31)
- A new tier 2 PGDB for Pseudomonas putida KT2440 (2020-02-18)
- Regulation Roundup (2019-03-27)
- BioCyc Gene Essentiality Data (2019-03-07)
- A 7th EC Class for Translocases (2018-10-22)
- Pan-Genome PGDBs Unify Genomic and Metabolic Data across Related Strains (2018-10-12)
- Generating a SmartTable of Orthologous Genes Across Multiple BioCyc Genomes (2018-06-29)
- Listing Gene Identifiers and Accession Numbers from a BioCyc Genome (2018-03-22)
- Local Downloading of BioCyc PGDBs for Pathway Tools Users (2018-01-15)
- Subscribe to Update Notifications (2017-02-27)
- PythonCyc: Using the Pathway Tools Python API (2016-07-13)
- Bulk Updates to Your PGDB (2016-06-08)
- BioCyc to Adopt Subscription Model (2016-04-13)
- Introducing Pathway Collages... (2016-03-10)
- Everything you always wanted to know about the Enzyme Commission Part II (2015-11-16)
- Everything you always wanted to know about the Enzyme Commission (2015-11-04)
- A New Curated BioCyc Database for Clostridium difficile (2015-04-24)
- Querying Databases by Organism Properties (2015-04-15)
- Procedure for Creating Metabolic Models from Sequenced Genomes (2015-03-06)
- Metabolic Modeling to Predict Organism Phenotypes (2015-02-26)
- Metabolic Modeling for Validation of Genome Annotations (2015-01-30)
- Searching for Metabolic Routes in Pathway Tools (2015-01-22)
- Propagating Updates from MetaCyc -- Nearly Effortless Improvements to your PGDB! (2014-12-05)
- Metagenomics, PathoLogic and Pathway Abundance (2013-04-30)
- A Sequence Data File for Associating Enzymes with MetaCyc Reactions (2013-04-30)
- Atom Mappings for Reactions (2012-11-30)
- FBA Tutorial Announcement (2011-05-02)
- Talkin' 'Bout My Regulation (2011-04-28)
- Are You Being Served? (2011-03-24)
- Hello, world! (2011-03-17)
News, tips and tricks from the developers of BioCyc and the Pathway Tools bioinformatics software system.
List of All Posts
This page lists all blog posts, newest to oldest.
Subscribe to:
Posts (Atom)
Please send the javascript code of list to me please
ReplyDeleteHere's the relevant portion:
ReplyDelete<ul id="postList12"></ul>
<script type="text/javascript">
var startIndex = 1;
var maxResults = 150;
var allResults = [];
function sendQuery12()
{
var scpt = document.createElement("script");
scpt.src = "/feeds/posts/summary?alt=json&callback=processPostList12&start-index=" + startIndex + "&max-results=" + maxResults;
document.body.appendChild(scpt);
}
function printArrayResults(root)
{
var elmt = document.getElementById("postList12");
for (index = 0; index < allResults.length; index++) {
elmt.appendChild(allResults[index]);
}
}
function processPostList12(root)
{
var elmt = document.getElementById("postList12");
if (!elmt)
return;
var feed = root.feed;
if (feed.entry.length > 0)
{
for (var i = 0; i < feed.entry.length; i++)
{
var entry = feed.entry[i];
var title = entry.title.$t;
var date = entry.published.$t
for (var j = 0; j < entry.link.length; j++)
{
if (entry.link[j].rel == "alternate")
{
var url = entry.link[j].href;
if (url && url.length > 0 && title && title.length > 0)
{
var liE = document.createElement("li");
var a1E = document.createElement("a");
a1E.href = url;
a1E.textContent = title + " (" + date.substr(0,10) + ")";
liE.appendChild(a1E);
allResults.push(liE);
}
break;
}
}
}
if (feed.entry.length >= maxResults)
{
startIndex += maxResults;
sendQuery12();
} else {
printArrayResults();
}
}
}
sendQuery12();
</script>