Skip to content

Instantly share code, notes, and snippets.

@stuppie
Created April 22, 2017 21:28
Show Gist options
  • Save stuppie/a78ab6fec8daa18f7087270ea86e54d2 to your computer and use it in GitHub Desktop.
Save stuppie/a78ab6fec8daa18f7087270ea86e54d2 to your computer and use it in GitHub Desktop.
Check NAR databases
from multiprocessing.pool import ThreadPool
from bs4 import BeautifulSoup
from urllib.request import urlopen
import requests
soup = BeautifulSoup(urlopen("http://www.oxfordjournals.org/nar/database/a"), "lxml")
urls = [link['href'] for link in soup.find_all('a', href=True) if link.text.strip() == "database"]
total = len(urls)
failed = 0
def check(url):
try:
r = requests.head(url, timeout=30)
r.raise_for_status()
return url, None
except Exception as e:
return url, e
results = ThreadPool(50).imap_unordered(check, urls)
for url, e in results:
if e is None:
print("{}: success!".format(url))
else:
print("{}: failed!".format(url))
failed += 1
print("{}/{} failed".format(failed, total))
http://people.biochem.umass.edu/fournierlab/3dmodmap/: success!
http://ribosome.fandm.edu/: success!
http://androgendb.mcgill.ca: success!
http://chordate.bpni.bio.keio.ac.jp/faba/: success!
http://adpribodb.leunglab.org/: success!
http://www.niaid.nih.gov/topics/alps/Pages/default.aspx: success!
http://arabidopsis.med.ohio-state.edu/: success!
http://www.mpiib-berlin.mpg.de/2D-PAGE/: success!
http://floresta.eead.csic.es/3dpwm/: success!
http://alfred.med.yale.edu/: success!
http://www.genomesize.com/: success!
http://www.addgene.org/: success!
http://www.alzgene.org/: success!
http://www.AgingChart.org: success!
http://www.genome.jp/aaindex/: success!
http://www.animalgenome.org/QTLdb/: failed!
http://mdl.shsmu.edu.cn/ASD/: success!
http://aps.unmc.edu/AP/main.php: success!
http://gemdock.life.nctu.edu.tw/3D-Interologs/: success!
http://protchem.hunnu.edu.cn/toxin/: success!
http://4dx.embl.de/4DXpress/: success!
http://www.agbase.msstate.edu/: success!
http://wwwmgs.bionet.nsc.ru/mgs/systems/activity/: success!
http://bioinf.xmu.edu.cn/ADReCS: success!
http://www-abcdb.biotoul.fr/: success!
http://aagatlas.ncpsb.org: success!
http://agefactdb.jenage.de: success!
http://genome.crg.es/datasets/abs2005/: success!
http://www.cienciavida.cl/alterorf/: failed!
http://www.brain-map.org: success!
http://rose.man.poznan.pl/aars/index.html: success!
http://mpss.udel.edu/at/: success!
http://caps.ncbs.res.in/3DSwap: success!
http://www.cbil.upenn.edu/apidots/: success!
http://bioinfo.life.hust.edu.cn/AnimalTFDB/index.php: success!
http://2p2idb.cnrs-mrs.fr/: success!
http://antismash-db.secondarymetabolites.org: success!
http://www.ddg-pharmfac.net/antijen/AntiJen/antijenhomepage.htm: success!
http://agd.vital-it.ch/: success!
http://appris.bioinfo.cnio.es/: success!
http://www.aniseed.cnrs.fr: success!
http://mosas.sysu.edu.cn/utr: success!
http://crdd.osdd.net/raghava/ahtpdb/: success!
http://www.aphidbase.com/: success!
http://www.allelefrequencies.net: success!
http://adhd.psych.ac.cn/: success!
http://www.araport.org: success!
https://asap.ahabs.wisc.edu/annotation/php/ASAP1.htm: failed!
http://www.plantgdb.org/AtGDB/: success!
http://ardb.cbcb.umd.edu/: failed!
http://appadb.eb.tuebingen.mpg.de: success!
http://www.imtech.res.in/raghava/antigendb: success!
http://biobases.ibch.poznan.pl/5SData/: success!
http://dmk-brain.ecn.uiowa.edu/ATGC/: success!
http://www.acedb.org/: success!
http://www.bacteriome.org/: success!
http://autism.mindspec.org/autdb/Welcome.do: success!
http://ahd.cbi.pku.edu.cn/: success!
http://omicspace.riken.jp/ARTADE/: failed!
http://3did.irbbarcelona.org/: success!
http://asrp.cgrb.oregonstate.edu/: success!
http://www.megabionet.org/atpid/: failed!
http://www.thearkdb.org/: success!
http://bioinf.scri.sari.ac.uk/cgi-bin/atnopdb/proteome_comparison/: success!
http://www.arachnoserver.org/: success!
http://www.ebi.ac.uk/arrayexpress/: failed!
http://rna.tbi.univie.ac.at/AREsite: success!
http://atted.jp/: success!
http://www.inetbio.org/aranet/: success!
http://www.athamap.de/: success!
cgap.nci.nih.gov/Pathways/BioCarta_Pathways: failed!
http://sbi.imim.es/archdb/: success!
http://wwwmgs.bionet.nsc.ru/mgs/gnw/aspd/: success!
http://wishart.biology.ualberta.ca/BacMap/: success!
http://bigg.ucsd.edu: failed!
http://as-alps.nagahama-i-bio.ac.jp/: success!
http://www.beetlebase.org: success!
http://www.bindingdb.org/: success!
http://aramemnon.botanik.uni-koeln.de/: success!
http://www.ebi.ac.uk/astd/: success!
http://www.aspergillus-genomes.org.uk/: success!
http://pc1664.pharmazie.uni-marburg.de/affinity/: success!
http://services.bio.ifi.lmu.de:1046/AutoPSIDB/: success!
http://www.aspgd.org: success!
https://arapheno.1001genomes.org: success!
http://bioinformatica.isa.cnr.it/ASC/: success!
http://www.ncbi.nlm.nih.gov/projects/gv/mhc/xslcgi.cgi?cmd=bgmut: success!
http://biogps.org: success!
http://ahdb.ee.ncku.edu.tw/: success!
http://bisc.soe.ucsc.edu/: success!
http://www.bmrb.wisc.edu/: success!
http://bioinformatics.breastcancertissuebank.org: success!
http://atlasgeneticsoncology.org/: success!
http://brp.kfshrc.edu.sa/ARED/: success!
http://bactibase.pfba-lab-tun.org/main.php: success!
http://biocyc.org/: success!
http://www.betacell.org/gbco/: failed!
http://www.barleybase.org/: success!
http://www.tanpaku.org/autophagy/: success!
https://bard.nih.gov/: success!
http://www.biodrugscreen.org/: success!
http://bnaber.org/: success!
http://bacdive.dsmz.de: success!
http://autosnpdb.appliedbioinformatics.com.au/: success!
http://www.thebiogrid.org: success!
http://www.ebi.ac.uk/biomodels/: success!
http://bacmet.biomedicine.gu.se/: success!
http://hsb.upf.edu/: success!
http://pir.georgetown.edu/iprolink/biothesaurus/: success!
http://www.ebi.ac.uk/biosamples: success!
http://biozon.org/: success!
http://camera.calit2.net/: failed!
http://bacdb.org/BacWGSTdb/: success!
http://crdd.osdd.net/servers/avpdb/: success!
http://net.icgeb.org/benchmark/: success!
http://www.cancer3d.org: success!
http://autism.cbi.pku.edu.cn: success!
http://bindingmoad.org: success!
http://149.171.101.136/python/BloodChIP/: success!
http://www.lbgi.fr/balibase/: success!
http://hscl.cimr.cam.ac.uk/bloodexpress/: success!
http://bitterdb.agri.huji.ac.il/dbbitter.php: success!
http://www.brenda-enzymes.org/BTO/: success!
http://www.buchnera.org/: success!
http://www.brassicagenome.net/: success!
http://www.bioguo.org/CADgene/: failed!
http://srv00.recas.ba.infn.it/ASPicDB/: success!
http://bacillus.genome.jp/: success!
http://rise.genomics.org.cn/: success!
http://cbio.mskcc.org/cancergenes/: success!
http://www.imtech.res.in/raghava/bcipep/: success!
http://zhanglab.ccmb.med.umich.edu/BioLiP/: success!
http://ccgd-starrlab.oit.umn.edu/: success!
http://syslab4.nchu.edu.tw/CRN: success!
http://mmb.irbbarcelona.org/ParmBSC1: success!
http://structure.bmc.lu.se/idbase/BTKbase/: success!
http://bionemo.bioinfo.cnio.es/: success!
http://bugs.sgul.ac.uk/E-BUGS-PUB: success!
http://14.139.32.56/: success!
http://csdb.glycoscience.ru/bacterial/: success!
http://bioinformatics.charite.de/cancerresource/: success!
http://www.cadre-genomes.org.uk: success!
http://web.stanford.edu/group/golden_gate_clon/cgi-bin/index/index.py: success!
http://www.barcdb.org: success!
http://www.cbioportal.org/public-portal/: success!
http://www.cdyn.org/: failed!
http://www.carpedb.ua.edu/: success!
http://www.ncbi.nlm.nih.gov/CCDS/: success!
http://redpoll.pharmacy.ualberta.ca/CCDB/: success!
http://cl.sdsc.edu/ce.html: failed!
http://BovineGenome.org: success!
http://www.casrdb.mcgill.ca/: success!
http://www.bionumbers.hms.harvard.edu: success!
http://fantom31p.gsc.riken.jp/cage/mm5/: success!
http://kwanlab.bio.cuhk.edu.hk/BSRD: success!
http://genolist.pasteur.fr/CandidaDB/: success!
http://info.ifpan.edu.pl/BSDB/: success!
http://www.ncbi.nlm.nih.gov/Structure/cdd/cdd.shtml: success!
http://sundarlab.ucdavis.edu/smrnas/: success!
http://www.brenda-enzymes.info/: success!
http://arpcard.mcmaster.ca: success!
https://bioinfo.uth.edu/ccmGDB/: success!
http://www.candidagenome.org/: success!
http://www.cellimagelibrary.org: success!
http://cebs.niehs.nih.gov/: success!
http://www.cellcircuits.org/: success!
http://crdd.osdd.net/raghava/cancerppd/: success!
http://cdb.ics.uci.edu/: success!
http://www.bioinsilico.org/CAPSDB: success!
http://structuralbiology.cau.edu.cn/gossypium/: success!
http://cluster.physics.iisc.ernet.in/cadb/: success!
http://cistrome.dfci.harvard.edu/CaSNP/: success!
http://cgdb.biocuckoo.org/: success!
http://servers.binf.ku.dk/bloodspot/: success!
http://www.cazy.org: success!
http://www.camp.bicnirrh.res.in/: success!
http://www.cathdb.info/: success!
http://coiledcoils.chm.bris.ac.uk/ccplus/search/: success!
http://www.cellfinder.org/: success!
http://www.ebi.ac.uk/chebi/: success!
http://www.glycome-db.org/getDownloadPage.action?page=carbbank: success!
http://oxytricha.princeton.edu/dimorphism/database.htm: success!
http://crdd.osdd.net/raghava/ccdb/: success!
http://www.catma.org/: success!
http://www.ncbi.nlm.nih.gov/clinvar/: success!
http://chembank.broadinstitute.org/: success!
http://www.elegansvariation.org: success!
http://www.ncbi.nlm.nih.gov/clone/: success!
http://brix.switchlab.org/: success!
http://www.cbs.dtu.dk/services/ChemProt/: success!
http://csdb.glycoscience.ru/database: success!
http://amoebadb.org/amoeba/: failed!
http://bioinf.itmat.upenn.edu/circa/: failed!
http://cansar.icr.ac.uk: success!
http://crdd.osdd.net/raghava/ccpdb/: success!
http://rna.sysu.edu.cn/chipbase/: success!
http://cega.ezlab.org/: failed!
http://cipro.ibio.jp/2.5: success!
http://cistrome.org/db: success!
http://cgg.ebi.ac.uk/cgg/cpp_sitemap.html: success!
http://www.medicalgenomics.org/celllinenavigator/: success!
http://www.cisred.org/: success!
http://www.ncbi.nlm.nih.gov/COG: success!
http://chitars.bioinfo.cnio.es/: success!
http://chloroplast.cbio.psu.edu/: success!
http://bidd2.nus.edu.sg/cfam: success!
http://circnet.mbc.nctu.edu.tw: success!
http://cleanex.vital-it.ch/: success!
https://www.ebi.ac.uk/chembldb/: success!
https://bioinformatics.cs.vt.edu/cmgs/CMGSDB/: success!
http://colt.ccbr.utoronto.ca/cancer: success!
http://combrex.bu.edu: success!
http://www.le.ac.uk/genetics/collagen/: success!
http://collectf.umbc.edu: success!
http://chicken.genomics.org.cn/: success!
http://comparasite.hgc.jp/: success!
http://xbase.warwick.ac.uk/colibase/: success!
http://www.cottongen.org: success!
http://colombos.net/: success!
http://cogeme.ex.ac.uk/: success!
http://centrosome.cnb.csic.es: success!
http://comppi.linkgroup.hu: success!
http://cpla.biocuckoo.org/: success!
http://www.conoserver.org/: success!
http://genolist.pasteur.fr/Colibri/: success!
http://codex.stemcells.cam.ac.uk/: success!
http://www.cpndb.ca: success!
http://www.unil.ch/comparativegenometrics/: success!
http://cancer.sanger.ac.uk/cancergenome/projects/cosmic/: success!
http://www.coexpedia.org: success!
http://cops.igib.res.in/copsv2/index.html: success!
http://cgbc.cgu.edu.tw/cmpd/: success!
http://cryptodb.org/: success!
http://cpdb.molgen.mpg.de/: success!
http://www.colonatlas.org: success!
http://www.mshri.on.ca/nagy/: success!
http://www.flymine.org/come/: success!
http://sarst.life.nthu.edu.tw/cpdb/: success!
http://corg.molgen.mpg.de/: success!
http://antares.protres.ru/comsin/: success!
http://coxpresdb.jp/: success!
http://mips.gsf.de/genre/proj/corum/: success!
http://research.nhgri.nih.gov/crisprz: success!
http://coryneregnet.cebitec.uni-bielefeld.de/v6/: success!
http://insulatordb.uthsc.edu/: success!
http://eupathdb.org/eupathdb/: failed!
http://ekhidna.biocenter.helsinki.fi/sqgraph/pairsdb/: success!
http://covdb.microbiology.hku.hk/: success!
http://www.glycosciences.de/tools/: success!
http://www.goldenhelix.org/cypriot/: success!
http://www.jcvi.org/charprotdb/: success!
http://www.ebi.ac.uk/thornton-srv/databases/CSA/: success!
http://www.molecular-systems.org/csdbase/: success!
http://consurfdb.tau.ac.il/: success!
http://www.crystallography.net/: success!
http://www.jncasr.ac.in/cremofac/: success!
http://ctdbase.org/: success!
http://pgrc.ipk-gatersleben.de/cr-est/: success!
http://www.cyclebase.org: success!
http://compbio.tongji.edu.cn/cr/: success!
http://lisanwanglab.org/DASHR: success!
http://beamish.ucc.ie/: failed!
http://genome.microbedb.jp/cyanobase/: success!
http://www.ccdc.cam.ac.uk/solutions/csd-system/components/csd/: success!
http://www.kazusa.or.jp/codon/: success!
http://www.fp.ucalgary.ca/group2introns/: failed!
http://crdd.osdd.net/raghava/cppsite/: success!
http://ekhidna.biocenter.helsinki.fi/dali/start/: success!
http://epsf.bmad.bii.a-star.edu.sg/cube/db/html/home.html: success!
http://www.cymobase.org/: success!
http://www.dbali.org/: success!
http://www.cybase.org.au/: success!
http://orca.gen.kyushu-u.ac.jp/: success!
http://dgv.tcag.ca/dgv/app/home: success!
http://fullmal.hgc.jp/: success!
http://lifesciencedb.jp/bp3d/?lng=en: success!
http://dbaasp.org: success!
http://www.ncbi.nlm.nih.gov/gap: success!
http://wodaklab.org/dancer/: success!
http://www.ncbi.nlm.nih.gov/gv/mhc/: success!
http://www.ebi.ac.uk/dgva/: success!
http://bidd.nus.edu.sg/group/drt/dart.asp: failed!
http://datf.cbi.pku.edu.cn/: success!
http://cgsmd.isi.edu/dbsnpq: success!
http://darcsite.genzentrum.lmu.de/darc/: success!
http://www.ncbi.nlm.nih.gov/SNP/: success!
http://www.dbass.org.uk/: success!
http://globin.bx.psu.edu/dberge/: success!
http://www.megabionet.org/dbSAP: failed!
http://coffee-genome.org/: success!
http://www.transcriptionfactor.org/: success!
http://www.sigma54.ca/microbialclusters/: success!
http://www.cta.lncc.br/: success!
http://bioinfo.au.tsinghua.edu.cn/dbRES/: failed!
http://d2p2.pro: success!
http://140.138.144.145/~dbSNO/index.php: success!
http://dbRIP.brocku.ca/: success!
http://mae.hms.harvard.edu: success!
http://www.ncbi.nlm.nih.gov/dbvar: success!
http://dbtbs.hgc.jp/: success!
http://bioinformatics.biol.uoa.gr/cuticleDB/: success!
http://dbptm.mbc.nctu.edu.tw/: success!
http://cyclonet.biouml.org/: success!
http://dbtss.hgc.jp/: success!
http://bioinfo.au.tsinghua.edu.cn/dbsuper/: success!
http://dejavu.vbi.vt.edu/dejavu/: success!
http://www.lf2.cuni.cz/projects/germline_mut_p53.htm: success!
http://www.hpppi.iicb.res.in/btox: success!
http://dbtgr.hgc.jp/: success!
http://dbtmee.hgc.jp/: success!
http://denovo-db.gs.washington.edu: success!
http://www.cags.org.ae/: success!
http://supfam.org/SUPERFAMILY/dcGO: success!
http://www.depod.org: success!
http://geisingeradmi.org/care-innovation/studies/dbd-genes/: success!
http://cell-lineage.org: success!
http://dfam.org/: success!
http://dgidb.genome.wustl.edu: success!
http://www.picb.ac.cn/dbDEMC: success!
http://dictybase.org/: success!
http://dga.nubic.northwestern.edu/: success!
http://www.deathdomain.org: success!
http://www.essentialgene.org: failed!
http://cyanolyase.genouest.org: success!
http://jjwanglab.org/dbpshp: success!
http://www.biologie.ens.fr/diatomics/EST/: success!
http://www.ddbj.nig.ac.jp: success!
http://www.cbrc.kaust.edu.sa/ddmgd/: failed!
http://diseaseontology.sf.net/: success!
http://dnasu.org: success!
http://discovehrshare.com/: success!
http://apps.sanbi.ac.za/ddoc/: failed!
http://decipher.sanger.ac.uk/: success!
http://www.cbrc.kaust.edu.sa/desm: failed!
http://dgcst.ceinge.unina.it/: success!
http://degradome.uniovi.es/: success!
http://domine.utdallas.edu/: success!
http://www.diark.org/diark/: success!
http://ageing-map.org/: success!
http://dmdd.org.uk: success!
http://dida.ibsquare.be: success!
http://apps.sanbi.ac.za/ddpc/: failed!
http://dockground.bioinformatics.ku.edu/: success!
http://distild.jensenlab.org/: success!
http://defensins.bii.a-star.edu.sg/: success!
http://www.disgenet.org/: success!
http://cutdb.burnham.org/: success!
http://www.dabi.temple.edu/disprot/: success!
http://202.97.205.78/diseasemeth: success!
http://orion.rnet.missouri.edu/~nz953/DOMMINO/: success!
http://www.dnareplication.net/: success!
http://csbl1.bmb.uga.edu/OperonDB/: success!
http://www.domins.org/: success!
https://rvs.u.hpc.mssm.edu/divas/: success!
http://dogvb.big.ac.cn: success!
http://dnatraffic.ibb.waw.pl/: success!
http://www.droidb.org/: success!
http://diprodb.fli-leibniz.de/: success!
http://mint.bio.uniroma2.it/domino/: success!
http://www.bio.nite.go.jp/pks/: failed!
http://www.drugbank.ca/: success!
http://circe.med.uniroma1.it/digit: success!
http://insects.eugenes.org/DroSpeGe/: success!
http://dorina.mdc-berlin.de: success!
http://syslab.nchu.edu.tw/DPRP/: success!
http://drygin.ccbr.utoronto.ca/: success!
http://motif.stanford.edu/distributions/eblocks/: success!
http://www.microrna.gr/LncBase: success!
http://arep.med.harvard.edu/dpinteract/: success!
http://drtf.cbi.pku.edu.cn/: success!
http://www.dpvweb.net/: failed!
http://drugcentral.org: success!
http://www.ebi.ac.uk/enzymeportal: success!
http://www.molgen.mpg.de/~ag_ribo/ag_brimacombe/drc/defaultlow.html: success!
http://www.wzw.tum.de/proteomik/lactis/: success!
http://eawag-bbd.ethz.ch/: success!
http://www.ebi.ac.uk/genomes/: success!
http://prodata.swmed.edu/ecod/: success!
http://doop.abc.hu/: success!
http://www.ebi.ac.uk/patentdata/nr/: success!
http://ecrbase.dcode.org/: success!
http://www.ddg-pharmfac.net/dsd/DSD/dehydrog.htm: success!
http://ecoliwiki.net: success!
http://www.ecmdb.ca: success!
http://service.ipr.pdbj.org/eF-site/index.jsp: failed!
http://projects.villa-bosch.de/dbase/dsmm/: success!
http://ecid.bioinfo.cnio.es/: success!
http://ecocyc.org/: success!
http://tubic.tju.edu.cn/doric5.0/: success!
http://www.weizmann.ac.il/mcb/UriAlon/DynamProt/: success!
http://ekpd.biocuckoo.org/: success!
http://caps.ncbs.res.in/dsdbase/dsdbase.html: success!
http://genome.ucsc.edu/ENCODE: success!
http://eendb.zfgenetics.org/: success!
http://www.encodeproject.org: success!
http://www.effectors.org: success!
http://www.drastic.org.uk/: success!
http://bpg.utoledo.edu/~afedorov/lab/eid.html: success!
http://emdatabank.org/: success!
http://www.ncbi.nlm.nih.gov/sites/entrez?db=genome: success!
http://www.ncbi.nlm.nih.gov/entrez/query.fcgi?db=gene: success!
http://www.bioinfo.org/dr.vis: success!
http://dpdb.uab.es/: success!
http://ngs.ym.edu.tw/driverdb: success!
http://www.biomedcomp.com/GPCR.html: success!
https://www.ebi.ac.uk/metagenomics/: success!
http://endonet.bioinf.med.uni-goettingen.de/: success!
http://eggnog.embl.de/: success!
http://equilibrator.weizmann.ac.il: success!
http://www.expasy.org/enzyme/: success!
http://www.cbil.upenn.edu/EpoDB/: success!
http://edas2.bioinf.fbb.msu.ru/: success!
http://www.emouseatlas.org/Atlas/intro.html: success!
http://epd.vital-it.ch/: success!
http://www.ensembl.org/: success!
http://rostlab.org/services/epitome/: success!
http://www.genome.wisc.edu/resources/essential.htm: success!
https://bioinfo.uth.edu/ERGR//: success!
http://elm.eu.org/: success!
http://www.emouseatlas.org/emage/: success!
http://eugenes.org/: success!
http://www.ebi.ac.uk/ega/: success!
http://eurisco.ecpgr.org/: success!
http://www.ebi.ac.uk/ena: success!
http://gpcr.biocomp.unibo.it/esldb/: success!
http://bioweb.ensam.inra.fr/ESTHER/general?what=index: success!
http://europepmc.org/: success!
http://www.chem.qmul.ac.uk/iubmb/enzyme/: success!
http://erop.inbi.ras.ru/: success!
http://euL1db.unice.fr: success!
http://www.iith.ac.in/EK3D/: success!
http://epgd.biosino.org/EPGD/: failed!
http://exac.broadinstitute.org: success!
http://www.europhenome.org/: success!
http://www.arraymap.org: success!
http://www.psb.ugent.be/rRNA/: success!
http://exac.broadinstitute.org/: success!
http://www.exocarta.org: success!
http://www.ebi.ac.uk/gxa: success!
http://cgl.imim.es/fcp/: failed!
http://www.cecafdb.org: success!
http://www.cmbi.ru.nl/EXProt/: success!
http://www.factorbook.org/: success!
http://www.enzyme-database.org/: success!
http://neobio.cs.pusan.ac.kr/evog/: success!
http://exposome-explorer.iarc.fr: success!
http://www.everest.cs.huji.ac.il/: success!
http://ezcatdb.cbrc.jp/EzCatDB/: success!
http://compbio.cs.queensu.ca/F-SNP/: success!
http://flybase.org/: success!
http://flyatlas.org/: failed!
http://www.factorix.org/: success!
http://urgv.evry.inra.fr/projects/FLAGdb++/HTML/index.shtml: success!
http://fantom.gsc.riken.jp/: success!
http://flj.lifesciencedb.jp/top/: success!
http://www.era7.com/ExtraTrain/: success!
http://mips.helmholtz-muenchen.de/genre/proj/FGDB/: success!
http://firedb.bioinfo.cnio.es/: success!
https://fairdomhub.org/: success!
http://pgfe.umassmed.edu/TFDBS/: success!
http://www.flytf.org/: success!
http://exolocator.eopsf.org/: success!
http://www.findbase.org/: success!
http://eyesite.cryst.bbk.ac.uk/: success!
http://urchin.spbcas.ru/flyex/ and http://flyex.uchicago.edu/flyex/index.jsp: failed!
http://www.clipz.unibas.ch/: success!
http://www.fly-ted.org/: success!
http://flysnp.imp.ac.at/: success!
http://pocket.med.wayne.edu/fpop/: success!
http://flytrap.med.yale.edu/: success!
http://flyRNAi.org/: success!
http://foresttree.org/ftdb: success!
http://fungidb.org: success!
http://www.flymine.org/: success!
http://bioinformatics.charite.de/fragment_store: success!
http://flyview.uni-muenster.de/: success!
http://www.phytosystems.ulg.ac.be/florid/: success!
http://www.ncrna.org/: success!
http://funcoup.sbc.su.se/: failed!
http://www.ebi.ac.uk/thornton-srv/databases/FunTree/: success!
http://cbi.labri.fr/Genolevures/: success!
http://www.genoplante.com/: success!
http://rohsdb.cmb.usc.edu/GBshape/: success!
http://geisha.arizona.edu/: success!
http://www.zbi.ee/fungal-genomesize/: success!
http://protdyn-database.org: success!
http://funsimmat.bioinf.mpi-inf.mpg.de/: success!
http://www.fruitfly.org/: success!
http://www.gelscape.ualberta.ca:8080/htm/gdbIndex.html: success!
http://www.ncbi.nlm.nih.gov: success!
http://gemina.igs.umaryland.edu: success!
http://donglab.ecnu.edu.cn/databases/FusionCancer/: success!
http://urgv.evry.inra.fr/GEM2NET: success!
http://birdbase.net/: success!
http://en.wikipedia.org/wiki/Portal:Gene_Wiki: success!
http://barcode.luhs.org/: success!
http://www.gabipd.org/: success!
http://FunShift.cgb.ki.se/: success!
http://www.genatlas.org/: success!
http://www.GABI-Kat.de/: success!
http://sgb.fli-leibniz.de/: success!
http://www.genes2cognition.org/: success!
http://www.cancerRxgene.org: success!
http://www.genefriends.org: success!
http://www.genecards.org/: failed!
http://caps.ncbs.res.in/gendis/home.html: success!
http://genenest.molgen.mpg.de/: success!
http://www.genedb.org/: success!
http://compbio.dfci.harvard.edu/genesigdb: success!
http://wwwmgs.bionet.nsc.ru/mgs/gnw/genenet/: success!
http://genespeed.ccf.org/: success!
http://genecards.weizmann.ac.il/geneannot/: success!
http://www.ncbi.nlm.nih.gov/Taxonomy/Utils/wprintgc.cgi: success!
http://bite-it.helsinki.fi/: success!
http://www.genestation.org: failed!
http://www.genenames.org/: success!
http://genecards.weizmann.ac.il/genenote/: success!
http://genecards.weizmann.ac.il/geneloc/: success!
http://ghr.nlm.nih.gov/: success!
http://www.cmhd.ca/genetrap/: success!
http://www.ncbi.nlm.nih.gov/entrez/query.fcgi?CMD=search&DB=genomeprj: success!
http://www.genepaint.org/Frameset.html: success!
http://www.rosaceae.org: success!
http://genolist.pasteur.fr/: success!
http://www.ebi.ac.uk/GenomeReviews/: success!
http://www.cbs.dtu.dk/services/GenomeAtlas/: success!
http://genecards.weizmann.ac.il/genetide/: success!
http://genometrafac.cchmc.org/: success!
http://www.genome3d.eu: success!
http://genprotec.mbl.edu/: success!
http://www.ncbi.nlm.nih.gov/geo/: success!
http://genomecrispr.org: success!
http://www.genomicus.biologie.ens.fr/: success!
http://www.gensat.org/: success!
http://gene3d.biochem.ucl.ac.uk/Gene3D/: success!
http://www.genomernai.org: success!
http://germsage.nichd.nih.gov/: success!
http://giardiadb.org/: success!
http://www.genome.jp/kegg/glycan/: success!
http://www.ggbn.org/dataportal/: failed!
http://www.glycanstructure.org/fragment-db: success!
http://www.glycostructures.jp/: success!
http://www.glycosciences.de/modeling/glycomapsdb/: success!
http://www.GeneWeaver.org: success!
http://www.geneontology.org: success!
http://www.glycome-db.org: success!
http://www.germonline.org/: failed!
http://www.ebi.ac.uk/GOA: success!
http://www.genomesonline.org/: success!
http://gobase.bcm.umontreal.ca/: success!
http://gowiki.tamu.edu: success!
http://www.rna.whu.edu.cn/gissd/: success!
http://nava.liacs.nl/: success!
https://glytoucan.org: success!
http://bcl.med.harvard.edu/proj/gopart/: success!
http://bbcftools.epfl.ch/getprime: success!
http://www.gpcr.org/7tm/: success!
http://apps.nhlbi.nih.gov/grasp/: success!
http://wheat.pw.usda.gov/: success!
http://greengenes.lbl.gov/: success!
http://www.gramene.org/: success!
http://bioinformatics.biol.uoa.gr/gpDB/: success!
http://gpxmea.gti.ed.ac.uk/: success!
http://www.gomapman.org: success!
http://bioinformatics.ramapo.edu/GRSDB2/: success!
http://tubic.tju.edu.cn/greglist/: success!
http://gtrnadb.ucsc.edu/: success!
http://greenc.sciencedesigners.com/wiki/Main_Page: success!
http://spock.genes.nig.ac.jp/~genome/gtop.html: failed!
http://gwidd.bioinformatics.ku.edu: success!
http://www.ebi.ac.uk/fgpt/gwas/: success!
http://www.greenphyl.org/: success!
http://jjwanglab.org/gwasdb: success!
http://gwips.ucc.ie: success!
http://www.informatics.jax.org/expression.shtml: success!
http://www.h-invitational.jp/: success!
http://genomics.senescence.info/: success!
http://www.expasy.org/sprot/hamap/: success!
https://www.gwascentral.org/: success!
http://gtrd.biouml.org: success!
http://tga.nig.ac.jp/h2db/: success!
http://hapmap.ncbi.nlm.nih.gov/: success!
http://gydb.org/: success!
http://www.g4ldb.org: success!
http://compbio.mit.edu/HaploReg: success!
http://www.ihop-net.org/UniPub/HCAD: success!
http://hembase.niddk.nih.gov/: success!
http://hcv.lanl.gov/: success!
http://www.helminth.net: success!
http://globin.cse.psu.edu/globin/hbvar/: success!
http://hdbase.org/: success!
http://www.imtech.res.in/raghava/haptendb/: success!
http://hemeprotein.info/heme.php: success!
http://hertellab.mmg.uci.edu/cgi-bin/HEXEvent/HEXEventWEB.cgi: success!
http://hfv.lanl.gov/: success!
http://crdd.osdd.net/raghava/hemolytik/: success!
http://genomes.urv.cat/HEG-DB/: success!
http://hetpdbnavi.nagahama-i-bio.ac.jp/: success!
http://genomes.urv.es/HGT-DB/: success!
http://www.HGPD.jp/: failed!
http://bioinfo.hrbmu.edu.cn/hhmd: success!
http://www.hgvs.org/: success!
http://xray.bmc.uu.se/hicup/: success!
http://gigadb.org/site/index: success!
http://hieranoidb.sbc.su.se/: success!
http://www.hipsci.org/: success!
http://research.nhgri.nih.gov/histones/: success!
http://hintdb.hgc.jp/htp/: success!
http://www.hiv.lanl.gov/content/sequence/RESDB/: success!
http://www.actrec.gov.in/histome/: success!
http://hits.isb-sib.ch/: success!
http://www.hiv.lanl.gov/content/immunology/index.html: success!
http://cbdm.uni-mainz.de/hippie/: success!
http://www.hiv.lanl.gov/content/index: success!
http://hivdb.stanford.edu/: success!
http://www.ncbi.nlm.nih.gov/RefSeq/HIVInteractions: success!
http://bioinfo.nist.gov/hmpd/: success!
http://www.hmdb.ca/: success!
http://cmbi.bjmu.edu.cn/hmdd: success!
http://pbil.univ-lyon1.fr/databases/hoinvgen/HOINVGEN.html: success!
http://www.hmtdb.uniba.it/: success!
http://hollywood.mit.edu/: success!
http://autosome.ru/HOCOMOCO, http://cbrc.kaust.edu.sa/hocomoco/: failed!
http://research.nhgri.nih.gov/homeodomain/: success!
http://www.ncbi.nlm.nih.gov/entrez/query.fcgi?db=homologene: success!
http://mizuguchilab.org/homstrad/: success!
http://mips.helmholtz-muenchen.de/HoPI/: success!
http://pbil.univ-lyon1.fr/databases/hoppsigen.html: success!
http://herv.img.cas.cz/: success!
http://bioportal.weizmann.ac.il/HORDE/: success!
http://prism.ccbb.ku.edu.tr/hotregion: success!
http://bioservices.hs-mittweida.de/Epros/: success!
http://howdy.biosciencedbc.jp/HOWDY/top_en.pl: success!
http://prism.ccbb.ku.edu.tr/hotsprint/: success!
http://dpi.nhri.org.tw/hp/: success!
http://www.megabionet.org/bio/hlung/: failed!
http://wilab.inha.ac.kr/hpid//: success!
http://www.hprd.org/: success!
http://www.hpmcd.org/: success!
http://receptome.stanford.edu/: success!
http://hpscreg.eu: success!
http://www.bioinfo.org.cn/hptaa/: success!
http://bioinfo.protres.ru/hrap/: success!
http://www.bioinfo.tsinghua.edu.cn/dbsubloc.html: failed!
http://ccg.vital-it.ch/htpselex/: success!
http://www.biosci.ki.se/groups/tbu/homeo.html: success!
http://www.sci.unisannio.it/docenti/rampone/: success!
http://www.kazusa.or.jp/huge/: success!
http://zlab.bu.edu/HugeSearch/: success!
http://oligogenome.stanford.edu/: success!
http://www.ibiblio.org/dnam/mainpage.html: success!
http://www.genpat.uu.se/mtDB/: success!
http://www.jcvi.org/cms/research/projects/tdb/overview: success!
http://www.humanproteinpedia.org/: success!
http://huref.jcvi.org/: success!
http://www.human-phenotype-ontology.org: success!
http://www.jncasr.ac.in/humhot/: failed!
http://pax6.hgu.mrc.ac.uk/: success!
http://itb.biologie.hu-berlin.de/~nebulus/sirna/index.htm: success!
http://HymenopteraGenome.org: success!
http://bioinformatics.hsanmartino.it/hypercldb/: success!
http://ophid.utoronto.ca/i2d/: success!
http://www.hvrbase.org/: success!
http://i5k.nal.usda.gov/: success!
http://www.ncbi.nlm.nih.gov/Structure/ibis/ibis.cgi: success!
http://p53.iarc.fr/: success!
http://ibeetle-base.uni-goettingen.de: success!
http://db-mml.sjtu.edu.cn/ICEberg/: success!
http://www.iedb.org/: success!
http://www.immuneepitope.org/bb_structure.php: success!
http://www.ideal.force.cs.is.nagoya-u.ac.jp/IDEAL/: success!
http://ic4r.org: success!
http://igdb.nsclc.ibms.sinica.edu.tw: success!
http://gnmdb.csb.pitt.edu/: success!
http://www.1000genomes.org/data-portal: success!
http://igrcid.ibms.sinica.edu.tw: success!
http://research.nhgri.nih.gov/scid/: success!
http://www.igdd.iicb.res.in: success!
http://img.jgi.doe.gov/: success!
http://www.knockoutmouse.org/: success!
http://img.jgi.doe.gov/m: success!
https://img.jgi.doe.gov/abc-public/: success!
https://img.jgi.doe.gov/vr/: success!
http://www.imgt.org/: success!
http://www.imgt.org/: success!
http://www.imgt.org/IMGT_GENE-DB/GENElect?livret=0/: success!
http://www.ebi.ac.uk/imgt/hla/: success!
http://www.imgt.org: success!
http://dcp.rutgers.edu: failed!
http://www.imgt.org/: success!
http://aclame.ulb.ac.be/: failed!
http://www.immport.org/immport-open/public/home/home: success!
http://immunet.princeton.edu: success!
http://immuco.bjmu.edu.cn/: success!
http://www.plantenergy.uwa.edu.au/applications/ampdb/index.html: failed!
http://caps.ncbs.res.in/imotdb/: success!
http://www.mousephenotype.org: success!
http://www.otago.ac.nz/IGC/: success!
http://www.inteins.com/: failed!
https://www.immunobase.org/: success!
http://biosilico.kaist.ac.kr/: failed!
http://bykdb.ibcp.fr/: failed!
http://www.fludb.org: success!
http://www.cangem.org/: failed!
http://www.innatedb.com/: success!
http://www.insect-genome.com/: success!
http://www.ebi.ac.uk/intact/: success!
http://www.ebi.ac.uk/integr8/: success!
http://icbs.ics.uci.edu/: success!
http://bps.rutgers.edu/: failed!
http://www.chromdb.org/: failed!
http://inparanoid.sbc.su.se/: success!
http://www.cdfd.org.in/insatdb/: success!
http://lifesciencedb.jp/cged/: failed!
http://genome.ewha.ac.kr/ChimerDB/: failed!
http://fmf.igh.cnrs.fr/infevers/: success!
http://www.ebi.ac.uk/intenz/: success!
http://cfgp.riceblast.snu.ac.kr/: failed!
http://www.sdbonline.org/fly/aimain/1aahome.htm: success!
https://www.infrafrontier.eu/: success!
http://cnidbase.org/index.cgi: failed!
http://www.lerner.ccf.org/labs/williams/xchip-html.cgi: failed!
http://mfrlab.org/interrna/: success!
http://biodev.cea.fr/interevol: success!
http://www.ebi.ac.uk/interpro: success!
http://www.interferome.org/: success!
http://www.genetrap.org/: success!
http://cleanest.kobic.re.kr/: failed!
http://www.ebi.ac.uk/ipd/estdab/: success!
http://www.ebi.ac.uk/ipd/hpa/: success!
http://www.intogen.org/search: success!
http://invfestdb.uab.cat: success!
http://www.ebi.ac.uk/ipd/: success!
http://www.ebi.ac.uk/IPI: success!
http://ipavs.cidms.org/: success!
http://ipfam.org/: success!
http://www.ebi.ac.uk/ipd/kir/: success!
http://www.interfil.org/: success!
http://pir.georgetown.edu/iproclass/: success!
http://pir.georgetown.edu/iprolink/: success!
http://rice.generationcp.org/germplasm/: failed!
http://www.guidetopharmacology.org: success!
http://isobase.csail.mit.edu: success!
http://www.chem.qmul.ac.uk/iubmb/: success!
http://www.ippidb.cdithem.fr/ http://www.cdithem.fr/ippidb/v2: failed!
http://www.iresite.org/: success!
http://lifecenter.sgst.cn/dbdepc/index.do: failed!
http://dbcrid.biolead.org: failed!
http://dblep.hupo.org.cn/: failed!
http://its2.bioapps.biozentrum.uni-wuerzburg.de/cgi-bin/index.pl?about: success!
http://www.ebi.ac.uk/ipd/mhc/: success!
http://www-is.biotoul.fr/: success!
http://www.chem.qmul.ac.uk/iupac/: success!
http://bioinfo.curie.fr/ittaca/: success!
http://bioinformatics.charite.de/jail/: success!
http://influenza.psych.ac.cn/: success!
http://dd.compbio.washington.edu/: failed!
http://deepbase.sysu.edu.cn/: failed!
http://www.genome.jp/kegg/: success!
http://www.nenno.it/karyotypedb/: success!
http://dip.doe-mbi.ucla.edu/: failed!
http://kpv.kazusa.or.jp/kpv4: success!
http://bidd.nus.edu.sg/group/kdbi/kdbi.asp: failed!
http://www.lcqb.upmc.fr/jet2_viewer/: success!
http://www.genome.jp/kegg/ligand.html: success!
http://www.fli-leibniz.de/IMAGE.html: failed!
http://webclu.bio.wzw.tum.de/dima/: failed!
http://golgi.ana.ed.ac.uk/kidhome.html: success!
https://repository.jpostdb.org/: success!
http://kbdock.loria.fr/: success!
http://gemdock.life.nctu.edu.tw/KIDFamMap/: success!
http://igenomed.org/KERIS: success!
http://www.uta.fi/imt/bioinfo/KinMutBase/: success!
http://juncdb.carmelab.huji.ac.il/: success!
http://KineticDB.protres.ru/db/index.pl: success!
http://www.compbio.dundee.ac.uk/kinomer/: success!
http://king.mbu.iisc.ernet.in/: success!
http://knottin.cbs.cnrs.fr/: success!
http://www.ittc.ku.edu/chenlab/: success!
http://jaspar.genereg.net/: success!
http://drug2gene.com: failed!
http://genome.ewha.ac.kr/ECgene/: failed!
http://plantgrn.noble.org/LegumeIP/: success!
http://www.ebi.ac.uk/compneur-srv/LGICdb/: success!
http://leger2.gbf.de/cgi-bin/expLeger.pl: success!
http://www.comparative-legumes.org/: success!
http://www.lipidmaps.org/data/proteome/index.cgi: success!
http://www.eplantsenescence.org: success!
http://www.llamp.net: success!
http://biocomp.chem.uw.edu.pl/protop/: success!
http://caps.ncbs.res.in/lenvardb/: success!
http://bioinfo.hrbmu.edu.cn/LincSNP: success!
http://eduliss.bch.ed.ac.uk/: failed!
http://www.lm.lncc.br: success!
http://klifs.vu-compmedchem.nl: success!
http://www.led.uni-stuttgart.de/: success!
http://bioinfo.life.hust.edu.cn/LNCediting/: success!
http://ecogene.org/: failed!
http://microme.genomics.org.cn/program/GenoListPERL/index.pl?database=leptolist: failed!
http://line1.molgen.mpg.de/: success!
http://www.rostlab.org/services/locDB/: success!
http://cmbi.bjmu.edu.cn/lncrnadisease: success!
http://www.dkfz.de/gpcf/lifedb.php: success!
http://ligasite.org/: success!
http://122.228.158.106/EpilepsyGene: failed!
http://www.lncrnadb.org: success!
http://research.nhgri.nih.gov/lowe/: success!
http://bioinfo.life.hust.edu.cn/lncRNASNP/: success!
http://www.bio-bigdata.com/lnc2cancer/: success!
http://www.lola.gwu.edu/: success!
http://eeb.princeton.edu/lucapedia: success!
http://www.lrg-sequence.org: success!
http://locate.imb.uq.edu.au/: success!
http://linkprot.cent.uw.edu.pl/: success!
http://www.glycosciences.de/spec/lox-db/: success!
http://mlg.hit.edu.cn/lncrna2target: success!
http://datam.i2r.a-star.edu.sg/ergdbV2/index.html: failed!
http://euhcvdb.ibcp.fr/: failed!
http://www.lncipedia.org: success!
http://www.bacterio.net: success!
http://prodata.swmed.edu/malisam/: success!
http://magest.hgc.jp/: success!
http://lynx.ci.uchicago.edu/: success!
http://www.ebi.ac.uk/thornton-srv/databases/MACiE/: success!
http://lsdb.hgu.mrc.ac.uk/home.php: success!
http://www.maizegdb.org/: success!
http://www.broadinstitute.org/annotation/fungi/magnaporthe/: success!
http://jbirc.jbic.or.jp/hinv/evola/: failed!
http://m3d.bu.edu/: success!
http://www.weizmann.ac.il/molgen/loqate/: success!
http://genome.ufl.edu/mapperdb/: success!
http://mampol.uab.es/: success!
http://manteia.igbmc.fr/: success!
http://www.malacards.org/: failed!
http://mamep.molgen.mpg.de/: success!
http://www.noble.org/mediccyc/: success!
http://www.ncbi.nlm.nih.gov/projects/mapview/: success!
http://matrixdb.ibcp.fr: success!
http://mgc.nci.nih.gov/: success!
http://machibase.gi.k.u-tokyo.ac.jp/: success!
http://mips.helmholtz-muenchen.de/plant/athal/: success!
http://www.mammibase.lncc.br/: success!
http://compgenomics.utsa.edu/methylation/: success!
http://merav.wi.mit.edu: success!
http://www.medicago.org/: success!
http://sysbio.kribb.re.kr:8080/fesd/: failed!
http://projects.biotec.tu-dresden.de/memotif: success!
http://www.mapuproteome.com/: success!
http://www.metabolomicsworkbench.org/: success!
http://www.earthworms.org/: success!
http://metadatabase.org: success!
http://merops.sanger.ac.uk/: success!
http://caps.ncbs.res.in/MegaMotifbase/index.html: success!
http://www.megx.net/: success!
http://www.ebi.ac.uk/metabolights: success!
http://www.genomeindia.org/biocuration: success!
http://flybrain.neurobio.arizona.edu/: failed!
http://metacyc.org/: success!
https://meg.colostate.edu/MEGaRes/: success!
http://mgan.geni-act.org/​: failed!
http://meta.microbesonline.org/: success!
http://konulab.fen.bilkent.edu.tr/mirna/: success!
http://metalweb.cerm.unifi.it/: success!
http://metaref.org/: success!
http://mips.gsf.de/genre/proj/mfungd/: failed!
http://microkit.biocuckoo.org: success!
http://metacrop.ipk-gatersleben.de/: success!
http://www.methdb.de/: success!
http://sysbio.sysu.edu.cn/methsmrt: success!
http://methycancer.psych.ac.cn/: success!
http://dnamethylome.org: success!
http://metasystems.riken.jp/metabiome/: success!
http://www.microrna.org/: success!
http://microsporidiadb.org: success!
http://MethHC.mbc.nctu.edu.tw: success!
http://www.imtech.res.in/raghava/mhcbn/: success!
http://www.bioinformatics.leeds.ac.uk/metatiger/: success!
http://metscout.mpg.de: success!
http://mirdb.org: success!
http://www.mir2disease.org/: failed!
http://www.genoscope.cns.fr/agc/microscope/: success!
http://www.fusariumdb.org/: failed!
http://mips.gsf.de/proj/plant/jsf/: success!
http://www.nmpdr.org/FIG/wiki/view.cgi/FIG/MetagenomicsRapidAnnotationServer: success!
http://www.ebi.ac.uk/miriam/: success!
http://www.MicrobesOnline.org: success!
http://c1.accurascience.com/miRecords/: success!
http://influenza.cdc.go.kr/: success!
http://mirnest.amu.edu.pl: success!
http://lncrna.big.ac.cn: success!
http://www.mitoage.org: success!
http://www.minas.uzh.ch: success!
http://www.broadinstitute.org/pubs/MitoCarta: success!
http://bioinfo.iitk.ac.in/MIPModDB: success!
http://bioinfo.amu.edu.pl/mirex: success!
http://www.mirbase.org/: success!
http://mirnamap.mbc.nctu.edu.tw/: success!
http://mint.bio.uniroma2.it/mint/: success!
https://www.wzgenomics.cn/mirdnmr/: success!
http://www.mitoproteome.org/: success!
http://immunet.cn/mimodb: success!
http://www.ncbi.nlm.nih.gov/Structure/: success!
http://mirtarbase.mbc.nctu.edu.tw: success!
http://mitobreak.portugene.com: success!
http://www.dsimb.inserm.fr/dsimb_tools/mitgene/: success!
http://salilab.org/modbase/: success!
http://cathwww.biochem.ucl.ac.uk:8080/Gene3D/: failed!
http://mmcd.nmrfam.wisc.edu/: success!
http://cegg.unige.ch/mirortho/: success!
http://mms.dsfarm.unipd.it/MMsINC/: success!
http://monarchinitiative.org: success!
http://mitodrome.ba.itb.cnr.it/: success!
http://bioinfo.mbb.yale.edu/MolMovDB/: success!
http://mepd.cos.uni-heidelberg.de/mepd/: success!
http://mitominer.mrc-mbu.cam.ac.uk/: success!
https://mpd.bioinf.uni-sb.de/: success!
http://mmdb.iab.keio.ac.jp/: success!
http://www.terravivida.com/vivida/monosaccharide/: failed!
http://mitores.ba.itb.cnr.it/index.php: failed!
http://mobidb.bio.unipd.it/: success!
http://phenome.jax.org/: success!
http://monarchbase.umassmed.edu: success!
http://strubiol.icr.ac.uk/extra/mokca/: success!
http://www.mitomap.org/: success!
http://genesilico.pl/modomics/: success!
http://www.metanetx.org: success!
http://www.informatics.jax.org: success!
http://mips.gsf.de/proj/plant/jsf/rice/index.jsp: success!
http://www.moonlightingproteins.org/: success!
http://tumor.informatics.jax.org: success!
http://moped.proteinspire.org: success!
http://variation.osu.edu/: success!
http://www.inetbio.org/mousenet/: success!
http://srv00.recas.ba.infn.it/mitozoa/: success!
http://bioinformatics.hsanmartino.it/mpdb/: success!
http://mvirdb.llnl.gov/: success!
http://intermine.modencode.org: success!
http://biolinfo.org/mpid-t2/: success!
http://breakpointmapper.wi.mit.edu/: success!
http://biotech.bmi.ac.cn/3dsnp/: failed!
http://www.USherbrooke.ca/vers/MtbRegList/: success!
http://mutdb.org/: success!
http://proteinformatics.charite.de/mppd: success!
http://membranome.org/: success!
http://www.zhaobioinfo.org/mutLBSgeneDB/: success!
http://jgi.doe.gov/fungi: success!
http://www.ncbi.nlm.nih.gov/biosample: success!
http://www.ncbi.nlm.nih.gov/biosystems: success!
http://services.cbib.u-bordeaux.fr/molligen/: success!
http://www.mutationaligner.org: success!
http://bioinformatics.charite.de/mvoc: success!
http://www.ncbi.nlm.nih.gov/protein: success!
http://www.ncbi.nlm.nih.gov/books: success!
http://rna.igmors.u-psud.fr/NAPP: success!
http://www.ncbi.nlm.nih.gov/genomes/VIRUSES/viruses.html: success!
http://www.ncbi.nlm.nih.gov/Taxonomy/taxonomyhome.html: success!
http://affymetrix.arabidopsis.info/: success!
http://wallace.uab.es/multitask/: success!
http://narcisse.toulouse.inra.fr/: success!
http://ecoli.naist.jp/: failed!
http://www.affymetrix.com/analysis/index.affx/analysis/index.affxanalysis/index.affx: success!
http://infolab.dgist.ac.kr/MRPrimerV: success!
http://mulpssm.mbu.iisc.ernet.in/: success!
http://networks.systemsbiology.net/: success!
http://ophid.utoronto.ca/networx/: success!
http://networkin.info/: success!
http://neibank.nei.nih.gov/: success!
http://www.mugen-noe.org/database/: success!
http://nbdb.bii.a-star.edu.sg: success!
http://cardiodb.org/nectar: success!
http://www.cbs.dtu.dk/databases/NESbase/: success!
http://nexontology.org/: success!
http://natsdb.cbi.pku.edu.cn/: success!
http://mips.helmholtz-muenchen.de/proj/ppi/negatome: success!
http://www.ncbi.nlm.nih.gov/gtr/: success!
http://bioagent.tmu.edu.tw/EHCO2/: failed!
http://nhprtr.org/: success!
http://ndbserver.rutgers.edu/: success!
http://www.nextprot.org/: success!
http://rostlab.org/services/nlsdb/: success!
http://newt-omics.mpi-bn.mpg.de: success!
http://www.nematodes.org/: success!
http://nonb.abcc.ncifcrf.gov: success!
http://pharminfo.pharm.kyoto-u.ac.jp/services/glida/: failed!
http://rna.urmc.rochester.edu/NNDB: success!
http://biobases.ibch.poznan.pl/ncRNA/: success!
http://www.gene.affrc.go.jp/databases_en.php: success!
http://bioinfo2.ugr.es/NGSmethDB/: success!
http://noncode.org/: success!
http://www.ucl.ac.uk/ncl/: success!
http://jsm-research.imb.uq.edu.au/nred/cgi-bin/ncrnadb.pl: failed!
http://bioinfo.lifl.fr/norine/: success!
http://nmr.cmbi.ru.nl/NRG-CING: success!
hhttp://www.rhesusbase.org/drugDisc/CAM.jsp: failed!
http://ogre.mcmaster.ca/: failed!
https://www.rostlab.org/services/NMPdb/: success!
http://crdd.osdd.net/raghava/npact/: success!
http://bio.ifom-ieo-campus.it/ncg: success!
http://www.lamondlab.com/NOPdb/: failed!
www.ompdb.org: failed!
http://www.mousebook.org/: success!
http://www.nursa.org/: success!
http://www.cbs.dtu.dk/databases/OGLYCBASE/: success!
http://srs6.bionet.nsc.ru/srs6/: success!
http://operondb.jp/: success!
http://npd.hgu.mrc.ac.uk/: success!
http://www.nematodes.org/nematodegenomes/index.php/Main_Page: success!
http://berry.engin.umich.edu/oligoarraydb/: success!
http://cbs.dtu.dk/services/NutriChem-1.0: success!
http://proline.biochem.iisc.ernet.in/NRICHD/: success!
http://www.receptors.org/NR/index.html: failed!
http://senselab.med.yale.edu/ordb/: success!
http://gold.tugraz.at/: failed!
http://www.omim.org: failed!
http://bhapp.c2b2.columbia.edu/OnTheFly/: success!
http://bioinformatics.icmb.utexas.edu/OPD/: success!
http://www.ontobee.org/: success!
http://www.oncomine.org/: success!
http://www.oreganno.org/: success!
http://oncodb.hcc.ibms.sinica.edu.tw/: success!
http://orf.invitrogen.com/: success!
http://www.omabrowser.org: success!
http://www.ncbi.nlm.nih.gov/genomes/ORGANELLES/organelles.html: success!
http://www.bio-bigdata.net/nsdna/: failed!
http://genserv.anat.ox.ac.uk/: success!
http://www.pathogenomics.sfu.ca/ortholugedb: success!
http://www.ifti.org/ootfd: success!
http://toxico.nibiohn.go.jp/english/index.html: success!
http://opm.phar.umich.edu: success!
https://targetvalidation.org: success!
http://nrresource.org/: success!
http://mips.helmholtz-muenchen.de/Organ_System_Heterogeneity/: success!
https://www.targetvalidation.org/: success!
http://organelledb.lsi.umich.edu/: success!
http://www.bioinfo.org.cn/NPInter/: success!
http://opentein.hgc.jp/: success!
http://ogeedb.embl.de: success!
http://webdocs.cs.ualberta.ca/~bioinfo/PA/: success!
http://www.pantherdb.org/: success!
http://www.orenza.u-psud.fr/: success!
http://www.pahdb.mcgill.ca/: success!
http://omia.angis.org.au/: success!
http://www.partigenedb.org/: success!
http://genoportal.org/SPD/index.do: failed!
http://www.p3db.org: success!
http://cegg.unige.ch/orthodb/browse: success!
http://PaVE.niaid.nih.gov: success!
http://mbgd.genome.ad.jp/: success!
http://www.shigen.nig.ac.jp/rice/oryzabase/: success!
http://www.pancreasexpression.org: success!
http://www.panzea.org/: success!
http://orygenesdb.cirad.fr/: success!
http://ophid.utoronto.ca/pathDIP: success!
http://www.ebi.ac.uk/goldman-srv/pandit/: success!
http://www.p2cs.org: success!
http://www.pathbase.net/: success!
http://pathguide.org/: success!
http://www.oridb.org/: success!
http://pali.mbu.iisc.ernet.in/: success!
http://www.pathwaycommons.org/pc/: success!
http://www.pathoplant.de/: success!
http://www.patricbrc.org//: success!
http://urgi.versailles.inra.fr/OryzaTagLine/: success!
http://pmite.hzau.edu.cn/django/mite/: success!
http://pdbflex.org: success!
http://caps.ncbs.res.in/pass2/: success!
http://pcdb.unq.edu.ar/: success!
http://www.idrtech.com/PDB-Ligand/: success!
http://npidb.belozersky.msu.ru/: success!
http://www.paidb.re.kr/about_paidb.php: success!
http://www.pazar.info/: success!
http://jbirc.jbic.or.jp/h-dbas/: failed!
http://pathoyeastract.org/index.php: success!
http://bioinfo.tg.fh-giessen.de/pdbselect/: success!
http://pcddb.cryst.bbk.ac.uk: success!
http://www.patrocles.org: success!
http://pdbj.org/: success!
http://www.cbrc.jp/pdbreprdb/: failed!
http://www.ebi.ac.uk/pdbsum: success!
http://www.pedb.vib.be: success!
http://shigen.lab.nig.ac.jp/ecoli/pec/: success!
http://pede.dna.affrc.go.jp/: success!
http://www.bioinsilico.org/PCRPIDB: success!
http://icb.med.cornell.edu/services/pdz/start: success!
http://www.ebi.ac.uk/pdbe/: success!
http://www.urogene.org/pgdb/: success!
http://pdbtm.enzim.hu/: failed!
http://bis.zju.edu.cn/pcernadb/index.jsp: success!
http://www.campsign.bicnirrh.res.in/: success!
http://nwsr.smith.man.ac.uk/pepseeker/: success!
http://swift.cmbi.ru.nl/gv/facilities/: success!
http://www.pharmgkb.org/: success!
http://www.peptideatlas.org/: success!
http://chibba.agtec.uga.edu/duplication/: success!
http://peptaibol.cryst.bbk.ac.uk/: success!
http://phenom.ccbr.utoronto.ca: success!
http://peroxibase.toulouse.inra.fr/index.php: success!
http://pepx.switchlab.org/: success!
http://srs6.bionet.nsc.ru/srs6bin/cgi-bin/wgetz?-page+LibInfo+-newId+-lib+PDBSite: success!
http://pedant.gsf.de/: success!
http://pfam.xfam.org/: success!
http://pbil.univ-lyon1.fr/databases/phever/: success!
http://www.phisite.org: success!
http://www.phosphosite.org/: success!
https://pharos.nih.gov/idg/index: success!
http://www.phexdb.mcgill.ca/: success!
http://phylogenomics.berkeley.edu/: success!
http://phytamp.pfba-lab-tun.org: success!
http://www.cmbi.ru.nl/phylopat/: success!
http://www.biocomputing.it/phospho3d/: success!
http://www.phosida.com: success!
http://www.imgt.org/ligmdb/: success!
http://www.phytozome.net/: success!
http://bioinformatics.wistar.upenn.edu/HemoPDB: failed!
http://lifecenter.sgst.cn/hit: failed!
http://www.phi-base.org/: failed!
http://phosphat.mpimp-golm.mpg.de/: success!
http://pid.nci.nih.gov/: success!
http://bioinformatics.psb.ugent.be/pico-plaza/: success!
http://www.phylomedb.org: success!
http://www.peroxisomedb.org/: success!
http://pig.vbi.vt.edu/: success!
http://www.bioinfodatabase.com/pint/: success!
http://pir.georgetown.edu/: success!
http://pir.georgetown.edu/pirsf/: failed!
http://urgi.versailles.inra.fr/phytoprot/: success!
http://cbg.garvan.unsw.edu.au/pina/: success!
http://mpss.udel.edu/: success!
http://pisite.hgc.jp/: success!
http://www.phytopathdb.org/: success!
http://www.compbio.dundee.ac.uk/www-pips/: success!
http://www.dna.affrc.go.jp/PLACE/: success!
http://data.kew.org/cvalues/: success!
http://plantrepeats.plantbiology.msu.edu/index.html: success!
http://www.smallrnagroup-mainz.de/piRNAclusterDB.html: success!
http://plantreactome.gramene.org/: success!
http://pirnabank.ibab.ac.in/: success!
http://www.plantontology.org/: success!
http://planmine.mpi-cbg.de/: success!
http://hgtree.snu.ac.kr: failed!
http://www.plantgdb.org/: success!
http://pig.genomics.org.cn/: success!
http://pidd.math.iastate.edu/: success!
http://plantsp.sdsc.edu/: success!
http://bis.zju.edu.cn/pnatdb/: success!
http://affymetrix2.bioinf.fbb.msu.ru: success!
http://probes.pw.usda.gov/piece/: success!
http://dayhoff.generationcp.org/: success!
http://bioinf.scri.sari.ac.uk/cgi-bin/plant_snorna/home: success!
http://PlasmoDB.org/: success!
http://plantrna.ibmp.cnrs.fr/: success!
http://linux1.softberry.com/berry.phtml?topic=plantprom&group=data&subgroup=plantprom: success!
http://lcgbase.big.ac.cn/plastid-LCGbase/: success!
http://plasmid.hms.harvard.edu/: success!
http://biotech.bmi.ac.cn/ehfpi/: failed!
http://pmap.burnham.org/: success!
http://PlantPAN2.itps.ncku.edu.tw: success!
http://www.plasmaproteomedatabase.org/: success!
http://fgp.huck.psu.edu/tribedb/index.pl: success!
http://pogs.uoregon.edu/: success!
http://planttfdb.cbi.pku.edu.cn: success!
http://plantpis.ba.itb.cnr.it/: success!
http://www.pocketome.org: success!
http://plasmogem.sanger.ac.uk/: success!
http://structuralbiology.cau.edu.cn/PNRD: success!
http://structure.bioc.cam.ac.uk/platinum: success!
http://bis.zju.edu.cn/pmirkb/: success!
http://pogo.ece.drexel.edu: success!
http://podb.nibb.ac.jp/Organellome/: success!
http://bioinformatics.psb.ugent.be/plaza/: success!
http://www.studiofmp.com/plpmdb/: success!
http://www.sesame-bioinfo.org/PMDBase: failed!
http://compbio.uthsc.edu/: success!
http://polbase.neb.com: success!
http://www.plprot.ethz.ch/: success!
http://exon.umdnj.edu/lab_home/: success!
http://www.gabipd.org/projects/Pomamo/: success!
http://www.plexdb.org: success!
http://www.poxvirus.org/: success!
http://ppdb.tc.cornell.edu/: success!
http://polydoms.cchmc.org/: success!
http://possum.cbrc.jp/PoSSuM/: success!
http://www.ddg-pharmfac.net/ppd/PPD/pKahomepage.htm: success!
http://predictivenetworks.org: success!
http://ppdb.agr.gifu-u.ac.jp: success!
http://plntfdb.bio.uni-potsdam.de/: success!
http://bhapp.c2b2.columbia.edu/PrePPI: success!
http://www.pptdb.ca/: success!
http://csb.wfu.edu/PREX: success!
http://genomequebec.mcgill.ca/PReMod/: success!
http://pridb.gdcb.iastate.edu/: success!
http://pir.georgetown.edu/pro: success!
http://SSU-rRNA.org: success!
http://www.ebi.ac.uk/pride/archive/: failed!
http://www.ebi.ac.uk/thornton-srv/databases/procognate/index.html: success!
http://www.pristionchus.org/: success!
http://www.prf.or.jp/: success!
http://www.pombase.org/: success!
http://pga.mgh.harvard.edu/primerbank/: success!
http://www.proglycprot.org: success!
http://www.bioinf.man.ac.uk/dbbrowser/PRINTS/: success!
http://operons.ibt.unam.mx/OperonPredictor/: success!
http://proportal.mit.edu/: success!
http://prodoric.tu-bs.de/: success!
http://bioinformatics.charite.de/promiscuous: success!
http://services.bio.ifi.lmu.de/ProSAS/: success!
http://www.expasy.org/tools/scanprosite/: success!
http://www.expasy.org/prosite/: success!
http://prophecy.lundberg.gu.se/: success!
http://www.pedb.org/: success!
http://www.genomemalaysia.gov.my/prolyses/: failed!
http://www.ncbi.nlm.nih.gov/sites/entrez?db=proteinclusters: success!
https://bioinformatics.cineca.it/PMDB/: success!
http://www.jcvi.org/pn-utility: success!
http://pgd.science.oregonstate.edu/: success!
http://www.microbial-ecology.net/probebase/: success!
http://dunbrack2.fccc.edu/protcid: success!
http://www.violinet.org/protegen/: success!
http://prorepeat.bioinformatics.nl/: success!
http://margalit.huji.ac.il/promec/: success!
http://www.prgdb.org: failed!
https://proteomescout.wustl.edu/: success!
http://pcidb.russelllab.org/: success!
http://pmd.ddbj.nig.ac.jp/: failed!
http://www0.nih.go.jp/mirror/Kinases/: success!
http://paramecium.cgm.cnrs-gif.fr/db/index: success!
http://mech.ctb.pku.edu.cn/protisa/: success!
http://www.proteomexchange.org/: success!
http://www.abren.net/protherm/: success!
http://isoelectricpointdb.org/: success!
http://www.proteomexchange.org/: success!
http://hbvdb.ibcp.fr: failed!
http://home.ku.edu.tr/~okeskin/INTERFACE/INTERFACES.html: success!
http://pseudobaseplusplus.utep.edu/: success!
http://www.math.iastate.edu/prtad/: success!
http://pseudofam.gersteinlab.org/: success!
http://www.pseudomonas.com/: success!
http://www.protonet.cs.huji.ac.il/: success!
http://www.imtech.res.in/raghava/prrdb/: success!
http://protozoadb.biowebdb.org/: success!
http://superfly.ucsd.edu/homophila/: failed!
http://www.pseudogene.org/: success!
http://idp1.force.cs.is.nagoya-u.ac.jp/pscdb/: success!
http://db.psort.org/: success!
http://www.ncbi.nlm.nih.gov/pubmed/: success!
http://pubchem.ncbi.nlm.nih.gov/: success!
http://kb.psi-structuralgenomics.org/: success!
http://www.proteus.cs.huji.ac.il/: success!
http://dunbrack2.fccc.edu/PyIgClassify/default.aspx: success!
http://research.engineering.uiowa.edu/kristensenlab/VOG: success!
http://psibase.kobic.re.kr/: success!
http://rnaedit.com: success!
http://primerdepot.nci.nih.gov/: success!
http://www.megabionet.org/aspd: failed!
http://pmrc.med.mssm.edu:9090/QTL/jsp/qtlhome.jsp: success!
http://www.cybergene.se/cgi-bin/w3-msql/ptchbase/index.html: success!
http://matrix.ugent.be/pubmeth/: success!
http://rgd.mcw.edu: success!
http://www.rcsb.org/: success!
http://q4md-forcefieldtools.org/REDDB/: success!
https://hugheslab.ccbr.utoronto.ca/databases/rbpdb/: failed!
http://rapdb.dna.affrc.go.jp/: success!
http://lipid-raft-database.di.uq.edu.au/: success!
http://ptgl.uni-frankfurt.de/: success!
http://web16.kazusa.or.jp/rapid/: success!
http://quorumpeps.ugent.be: success!
http://rloop-v2.bii.a-star.edu.sg: success!
http://rarge.psc.riken.jp/: success!
http://rebase.neb.com/rebase/rebase.html: failed!
http://www.byanbioinfo.org/plamom/: success!
http://recountdb.cbrc.jp: success!
http://www.ncbi.nlm.nih.gov/RefSeq/: success!
http://refold.med.monash.edu.au/: success!
http://www.reactome.org/: success!
http://regprecise.lbl.gov: success!
http://regtransbase.lbl.gov/: success!
http://www.verandi.de/joomla/: success!
http://www.rbp-var.biols.ac.cn/: success!
http://recode.ucc.ie/about/: success!
http://www.lsbm.org/site_e/database/index.html: success!
http://srv00.recas.ba.infn.it/atlas/: success!
http://regulondb.ccg.unam.mx/: success!
http://repairtoire.genesilico.pl: success!
http://www.ebi.ac.uk/RESID/: success!
http://RegPhos.mbc.nctu.edu.tw/: success!
http://redfly.ccr.buffalo.edu/: success!
http://ptmcode.embl.de: success!
http://www.replicationdomain.org/andhttp://www.chromosomedomain.org/: failed!
http://rdp.cme.msu.edu/: success!
http://www.ebi.ac.uk/rhea/: success!
http://rfam.xfam.org/: success!
http://golgi.gs.dna.affrc.go.jp/SY-1102/rad/index.html: success!
http://gene64.dna.affrc.go.jp/RPD/main_en.html: success!
http://www.mbio.ncsu.edu/RNaseP/home.html: success!
http://www.rna-society.org/raid: success!
http://cdna01.dna.affrc.go.jp/PIPE/: success!
http://RiceGAAS.dna.affrc.go.jp/: success!
http://www.rhesusbase.org: success!
http://repeatsdb.bio.unipd.it/: success!
http://rmd.ncpgr.cn/: success!
http://cossmos.slu.edu: success!
http://ricexpro.dna.affrc.go.jp/: success!
http://www.rnahelicase.org: success!
http://rna-mdb.cas.albany.edu/RNAmods/: success!
http://rice.kps.ku.ac.th/: success!
http://ricefrend.dna.affrc.go.jp/: success!
http://www.retroryza.org/: success!
http://mirlab.sysu.edu.cn/rmbase/: success!
http://metadb.riken.jp/metadb/db/SciNetS_ria254i/: success!
http://reptar.ekmd.huji.ac.il/: success!
http://www.ridom.de/: success!
http://rnajunction.abcc.ncifcrf.gov/: success!
http://www.rnai.org/: success!
http://rnacentral.org/: success!
http://codex.cshl.org/: success!
http://ricevarmap.ncpgr.cn: success!
http://porteco.org: success!
http://roundup.hms.harvard.edu/: failed!
http://POSTAR.ncrnalab.org: success!
http://iimcb.genesilico.pl/rnabricks: success!
http://rrndb.umms.med.umich.edu/: success!
http://sysbio.sysu.edu.cn/rpfdb/: success!
http://ribosome.med.miyazaki-u.ac.jp/: success!
http://app.mc.uky.edu/kolab/rogedendo.aspx: success!
http://www.rnasoft.ca/sstrand/: success!
http://www.ncbi.nlm.nih.gov/SAGE/: success!
http://rnb.genesilico.pl/: success!
http://www.liuweibo.com/sarsdb/: success!
http://research.imb.uq.edu.au/RNAdb/: failed!
http://bird.cbrc.jp/sahg: failed!
http://wwwmgs.bionet.nsc.ru/mgs/systems/rsnp/: success!
http://www.rna-society.org/rnalocate/: success!
http://sbrblood.nhgri.nih.gov: success!
http://medgen.ugent.be/rtprimerdb/: failed!
http://SchistoDB.net/: success!
http://rnrdb.molbio.su.se/: success!
http://scop.berkeley.edu/: success!
http://smartdb.bioinf.med.uni-goettingen.de/: success!
http://stormo.wustl.edu/ScerTF: success!
http://sabiork.h-its.org/: success!
http://bioinfo3d.cs.tau.ac.il/RsiteDB/: success!
http://www.cls.zju.edu.cn/pair/: success!
http://www.iephb.nw.ru/labs/lab38/spirov/hox_pro/hox-pro00.html: failed!
http://rv.psych.ac.cn: success!
http://scld.mcb.uconn.edu/: success!
http://opig.stats.ox.ac.uk/webapps/sabdab: success!
http://crdd.osdd.net/raghava/satpdb/: success!
http://fermi.utmb.edu/SDAP/: success!
http://rulai.cshl.edu/SCPD/: success!
http://sea.edbc.org: failed!
http://yeast.gi.k.u-tokyo.ac.jp/: success!
http://www.icgeb.org/sbase/: success!
http://www.sasbdb.org/: success!
http://www.ncbi.nlm.nih.gov/Complete_Genomes/SignalCensus.html: success!
http://scop.mrc-lmb.cam.ac.uk/scop: success!
http://db-mml.sjtu.edu.cn/SecReT4: success!
http://www.seedgenes.org/: success!
http://www.sevaplasmids.com: success!
http://sfld.rbvi.ucsf.edu/: success!
http://www.yeastgenome.org/: success!
http://bioinformatics.towson.edu/SGMD3/: failed!
http://www.sebida.de/: success!
http://bioinfo-pharma.u-strasbg.fr/scPDB/: success!
http://bioinfo.unil.ch/selectome/: success!
http://seqanswers.com/wiki/SEQanswers: success!
http://spd.cbi.pku.edu.cn/: success!
http://wwwmgs.bionet.nsc.ru/mgs/systems/selex/: success!
http://www.ebi.ac.uk/pdbe/docs/sifts/: success!
http://motif.bmi.ohio-state.edu/hrtbldb/: failed!
http://sevens.cbrc.jp/: success!
http://www.seltarbase.org: success!
http://www.scoppi.org/: success!
http://www.ncbi.nlm.nih.gov/sky/: success!
http://mips.gsf.de/simap/: success!
http://www.selenodb.org/: success!
http://sideeffects.embl.de/: success!
http://sisyphus.mrc-cpe.cam.ac.uk/: success!
http://www.arb-silva.de/: success!
http://signor.uniroma2.it/: success!
http://smedgd.neuro.utah.edu/: success!
http://bioinfo.imtech.res.in/manojk/sigmol: success!
http://sirna.sbc.su.se/: success!
http://www.smpdb.ca: success!
http://www.cdfd.org.in/SILKSAT/index.php: success!
http://www.compbio.dundee.ac.uk/SNAPPI/downloads.jsp: success!
http://rapeseed.plantsignal.cn/: failed!
http://gene.fudan.edu.cn/snoRNAbase.nsf: success!
http://caps.ncbs.res.in/SMoS2/: success!
http://oryzasnp.org:8080/iric-portal/: success!
http://ccg.vital-it.ch/snp2tfbs/:: failed!
http://sines.eimb.ru: success!
http://snp500cancer.nci.nih.gov/: success!
http://www.SNPedia.com: success!
http://www-snorna.biotoul.fr/: success!
http://smart.embl.de/: success!
http://snplogic.org//: success!
http://solgenomics.net/: success!
http://compbio.uthsc.edu/SomamiR/: success!
http://www.sorfs.org: success!
http://soybase.org/: success!
http://www.inetbio.org/soynet/: success!
http://snoopy.med.miyazaki-u.ac.jp/: success!
http://spbase.org/: success!
http://source-search.princeton.edu/: success!
http://www.progenetix.org: success!
http://spliceosomedb.ucsc.edu: success!
http://snpeffect.switchlab.org: success!
http://193.206.120.249/splicing_tissue.html: success!
http://soykb.org: success!
http://www-bionet.sscc.ru/sitex/: success!
http://cmbi.bjmu.edu.cn/Sdisease: success!
http://bioinformatics.engineering.asu.edu/springs/Sprouts/index.html: success!
http://www3.imperial.ac.uk/theoreticalgenomics/data-software/: success!
http://bioinfobase.umkc.edu/speed/speed_main.htm: success!
http://linux1.softberry.com/berry.phtml?topic=splicedb: success!
http://www.cs.tau.ac.il/~spike/: success!
http://spliceinfo.mbc.nctu.edu.tw/: success!
http://rnp.uthscsa.edu/rnp/SRPDB/SRPDB.html: failed!
http://stellabase.org/: success!
http://mcg.ustc.edu.cn/bsc/spermgenes/: success!
http://srnamap.mbc.nctu.edu.tw/: success!
http://splicenest.molgen.mpg.de/: success!
http://bioweb.ensam.inra.fr/spodobase/: success!
http://discovery.hsci.harvard.edu/: success!
http://caps.ncbs.res.in/SSTOSS/index.htm: success!
http://sporeweb.molgenrug.nl: success!
http://starbase.sysu.edu.cn/: success!
http://psb.kobic.re.kr/STAP/refinement: success!
http://ssd.rbvi.ucsf.edu/: success!
http://www.StrainInfo.net/: success!
http://caps.ncbs.res.in/stifdb2: success!
http://www.cstl.nist.gov/div831/strbase/: success!
http://start2fold.eu: success!
http://genolist.pasteur.fr/SubtiList/: success!
http://bibiserv.techfak.uni-bielefeld.de/stcdb/: success!
http://streptomedb.pharmaceutical-bioinformatics.de: success!
http://rnafrabase.ibch.poznan.pl/: success!
http://subtiwiki.uni-goettingen.de/: success!
http://sugarbind.expasy.org: failed!
http://oger.tu-bs.de/strepto_db/: success!
http://stitch.embl.de: success!
http://bioinformatics.charite.de/supercyp: success!
http://supfam.org/SUPERFAMILY/: success!
http://biomarker.korea.ac.kr/: failed!
http://bioinformatics.charite.de/superhapten/: success!
http://superfly.crg.eu: success!
http://bioinf.charite.de/superdrug/: success!
http://string.embl.de/: success!
http://bioinformatics.charite.de/supernatural: success!
http://bioinformatics.charite.de/superpain/: success!
http://bioinformatics.charite.de/superscent/: success!
http://bioinformatics.charite.de/supersite/: success!
http://sms.cbi.cnptia.embrapa.br/SMS/STINGm/SMSReport/: success!
http://bioinformatics.charite.de/sweet/: success!
http://idm.fudan.edu.cn/PBmice/: failed!
http://bioinformatics.charite.de/supertoxic/: success!
http://insilico.charite.de/supertarget/: success!
http://www.glycosciences.de/database/: success!
http://www.expasy.org/ch2d/: success!
http://swissmodel.expasy.org/repository/: success!
http://www.umbc.edu/codon/sgdb/index.php: success!
http://www.swissregulon.unibas.ch/: success!
http://pimp.starflr.info/: success!
http://bioinformatics.charite.de/synsysnet: success!
http://www.swissbioisostere.ch/: success!
http://www.swisssidechain.ch: success!
http://syndb.cbi.pku.edu.cn/: success!
https://www.surechembl.org/search/: success!
https://bioinfo.uth.edu/SZGR/: success!
http://www.type2diabetesgenetics.org/: success!
http://histone.sce.ntu.edu.sg/SynLethDB/: success!
http://www.systomonas.de/: success!
http://www.wyomingbioinformatics.org/TAED/: success!
http://systers.molgen.mpg.de/: success!
http://www.tcdb.org/: success!
http://www.t3db.org: success!
http://microrna.gr/tarbase: success!
http://epgd.biosino.org/SysZNF/: failed!
http://projects.insilico.us.com/TCGASpliceSeq: success!
http://supfam.mbu.iisc.ernet.in/: success!
http://www.mgc.ac.cn/ShiBASE/: success!
http://tcruzidb.org/: success!
http://tbestdb.bcm.umontreal.ca/searches/welcome.php: success!
http://bioinfo-mml.sjtu.edu.cn/TADB/: success!
http://www.megabionet.org/tcmid/: failed!
http://xpdb.nist.gov/enzyme_thermodynamics/: success!
http://cbrc.kaust.edu.sa/tcof/: success!
http://telomerase.asu.edu/: success!
http://rohslab.cmb.usc.edu/TFBSshape/: success!
http://targetdb.pdb.org/: success!
http://tbdb.org/: success!
http://www.tassdb.info/: success!
http://ted.bti.cornell.edu/: success!
http://www.cbil.upenn.edu/cgi-bin/tess/tess: success!
http://www.ciliate.org/: success!
http://snps.tcruzi.org/: success!
http://www.ncbi.nlm.nih.gov/sra or http://www.ebi.ac.uk/ena or http://trace.ddbj.nig.ac.jp: success!
http://compbio.dfci.harvard.edu/tgi/: success!
http://library.med.utah.edu/SSUmods/: success!
http://projects.tcag.ca/lafora/: success!
http://www.ebi.ac.uk/intact/complex: success!
http://www.arabidopsis.org/: success!
http://tfclass.bioinf.med.uni-goettingen.de/: success!
http://projects.tcag.ca/autism/: success!
http://maize.tigr.org/: success!
http://plantta.tigr.org/: success!
http://www.enzyme.cbirc.iastate.edu: success!
http://www.chr7.org/: success!
(http://bio-cluster.iis.sinica.edu.tw/TMPad: failed!
http://tisdb.human.cornell.edu/: success!
http://www.jcvi.org/cgi-bin/tigrfams/index.cgi: success!
http://rnp.uthscsa.edu/rnp/tmRDB/tmRDB.html: failed!
http://tfbsbank.co.uk/: success!
http://tmbeta-genome.cbrc.jp/annotation/: success!
http://tmbeta-genome.cbrc.jp/TMFunction/: success!
https://tma.im/cgi-bin/home.pl: success!
http://pranag.physics.iisc.ernet.in/thgs/: success!
http://tiprod.bioinf.med.uni-goettingen.de/: success!
http://www.topsan.org/: failed!
http://www.itb.cnr.it/cellcycle/: success!
http://gila.bioe.uic.edu/snp/toposnp/: success!
http://clipserve.clip.ubc.ca/topfind: success!
http://biosrv.cab.unina.it/tomatestdb/: success!
http://ToxoDB.org/: success!
http://iomics.ugent.be/toppr/: success!
http://netbio.bgu.ac.il/tissuenet/: success!
http://bioinformatics.charite.de/transformer: success!
http://www.gene-regulation.com/: success!
http://www.gene-regulation.com/pub/databases.html#transcompel: success!
http://cmbi.bjmu.edu.cn/transmir: success!
http://www.gene-regulation.com/pub/databases.html#transpath: success!
http://www.membranetransport.org/: success!
http://tpmd.nhri.org.tw/: success!
http://rulai.cshl.edu/tred/: success!
http://www.tractor.lncc.br/: success!
http://topdb.enzim.hu: success!
http://tandem.bu.edu/cgi-bin/trdb/trdb.exe: success!
http://genome.bioch.virginia.edu/trfdb/: success!
http://transpogene.tau.ac.il/: success!
ftp://ftp.isrec.isb-sib.ch/pub/databases/: failed!
http://www.TriTrypDB.org: success!
http://www.treefam.org/: success!
http://www.trpchannel.org/: success!
http://trbase.ex.ac.uk/: success!
http://trna.nagahama-i-bio.ac.jp/: success!
http://wwwmgs.bionet.nsc.ru/mgs/gnw/trrd/: success!
http://tropgenedb.cirad.fr/: success!
http://www.treebase.org/: success!
http://ibb.uab.es/trsdb/: success!
http://indel.bioinfo.sdu.edu.cn: failed!
http://tdrtargets.org/: success!
https://bioinfo.uth.edu/TSGene1.0/: success!
http://trnadb.bioinf.uni-leipzig.de/: success!
http://archaea.ucsc.edu/: success!
http://bidd.nus.edu.sg/group/cjttd/: success!
http://www.metexplore.fr/trypanocyc/: success!
http://genome.ucsc.edu/: success!
http://www.tumor-gene.org/tgdf.html: success!
http://genome-cancer.cse.ucsc.edu: success!
http://mRNA.otago.ac.nz/Transterm.html: success!
http://www.signaling-gateway.org/molecule/: success!
http://ccg.vital-it.ch/UCNEbase/: success!
http://mammoth.bcm.tmc.edu/uet/: success!
http://www.binfo.ncku.edu.tw/TAG/GeneDoc.php: success!
http://ttsmi.bii.a-star.edu.sg: success!
http://www.ncbi.nlm.nih.gov/sites/entrez?db=unigene: success!
http://ucbase.unimore.it/: success!
http://interdom.i2r.a-star.edu.sg/: failed!
http://tstmp.enzim.ttk.mta.hu: success!
http://ukcrop.net/: success!
http://www.uniprot.org/uniparc/: success!
http://www.unicarbkb.org/: success!
http://www-bio3d-igbmc.u-strasbg.fr/ICDS/: failed!
http://uniclust.mmseqs.com/: success!
http://genome.crg.es/cgi-bin/u12db/u12db.cgi: success!
http://www.ncbi.nlm.nih.gov/probe: success!
http://uniprobe.org: success!
http://www.uniprot.org/: success!
http://www.ncbi.nlm.nih.gov/VecScreen/UniVec.html: success!
http://www.utrome.org/: success!
http://ipu.ac.in/usbt/UgMicroSatdb.htm: success!
http://www.ebi.ac.uk/uniprot/unisave/: success!
http://uucd.biocuckoo.org/: success!
http://www.compgen.uni-muenster.de/tools/uorfdb/: success!
http://bmi-tokai.jp/VaDE/: success!
http://www.uniprot.org/uniref/: success!
http://www.unihi.org/: failed!
http://www.umd.be/BRCA1/: success!
http://downloads.yeastgenome.org/unpublished_data/vectordb/: success!
http://utrdb.ba.itb.cnr.it/: success!
http://h-invitational.jp/varygene/: success!
http://viperdb.scripps.edu/: success!
http://medaka.utgenome.org/: success!
http://www.hsls.pitt.edu/guides/genetics/obrc/: failed!
http://www.vectorbase.org: success!
http://www.viprbrc.org: success!
http://www.mgc.ac.cn/VFs/: success!
http://www.violinet.org: success!
http://vega.sanger.ac.uk/: success!
http://www.viralorfeome.com/: success!
http://ncbr.muni.cz/ValidatorDB: success!
http://www.biovirus.org/: success!
http://www.biochem.ucl.ac.uk/bsm/virus_database/VIDA.html: success!
http://www.vbase2.org/: success!
http://viroligo.okstate.edu/: success!
http://datam.i2r.a-star.edu.sg/kberg/: failed!
http://enhancer.lbl.gov/: success!
http://alk.ibms.sinica.edu.tw/: success!
http://160.80.34.9/mentha/virusmentha/: success!
http://viralzone.expasy.org/: success!
http://vkcdb.biology.ualberta.ca/: success!
http://crdd.osdd.net/servers/virsirnadb: success!
http://virhostnet.prabi.fr: success!
http://bioinformatics.charite.de/voronoia/: success!
http://www.rna-society.org/virbase/: success!
https://www.ncbi.nlm.nih.gov/genome/viruses/: success!
http://vita.mbc.nctu.edu.tw/: success!
http://wholecellkb.stanford.edu: success!
http://weram.biocuckoo.org/: success!
http://validness.ym.edu.tw/: success!
http://proteinformatics.charite.de/voronoia4rna/tools/v4rna/index: success!
http://www.wikipathways.org: success!
http://wnt.stanford.edu/: success!
http://coexpression.cmbi.umcn.nl/: success!
http://www.wdcm.org: success!
http://so.qbic.riken.jp/wddd/: success!
http://pallab.serc.iisc.ernet.in/gester/: success!
http://www.wormbase.org/: success!
http://cheminfo.charite.de/withdrawn: success!
http://www.xtalkdb.org: success!
http://www.wormbook.org/: success!
http://worfdb.dfci.harvard.edu/: success!
http://www.cse.ucsc.edu/research/compbio/yeast_introns.html: success!
http://www.xenbase.org: success!
http://www-deletion.stanford.edu/YDPM/YDPM_index.html: success!
http://wfleabase.org/: success!
http://people.biochem.umass.edu/fournierlab/snornadb/snoRNA_DataBase.html: success!
http://www.yeastrc.org/pdr/: success!
http://www.ycelldeath.com/yapoptosis/: success!
http://yetfasco.ccbr.utoronto.ca/: success!
http://www.wormqtl.org: success!
http://www.wormqtl-hd.org: success!
http://www.inetbio.org/yeastnet/: success!
http://wu.scbb.pkusz.edu.cn/wdsp/: success!
http://helix-web.stanford.edu/LPFC/: failed!
http://ngs.ym.edu.tw/ym500/: success!
http://wolfe.gen.tcd.ie/ygob/: success!
http://zfin.org/: failed!
http://www.ymdb.ca: success!
http://research.nhgri.nih.gov/zinc: success!
https://zifdb.msi.umn.edu:8444/ZiFDB/: failed!
http://unitrap.crg.es/: success!
http://yh.genomics.org.cn/: success!
http://www.transcriptome.ens.fr/ymgv/: success!
http://datam.i2r.a-star.edu.sg/mdpd/index.php: failed!
http://zfishbook.org/: success!
http://bio.dfci.harvard.edu/DFRMLI/: failed!
http://mnm.engr.uconn.edu/: failed!
http://genome.ewha.ac.kr/miRGator/miRGator.html: failed!
http://www.diana.pcbi.upenn.edu/miRGen/: failed!
http://genomics.ornl.gov/mist/: failed!
http://mitome.knu.ac.kr//: failed!
http://bioinformatics.wistar.upenn.edu/MPromDb/: failed!
http://variome.kobic.re.kr/SNP2NMD/: failed!
http://www.plantenergy.uwa.edu.au/applications/mpimp/index.html: failed!
http://prion.bchs.uh.edu/bp_type/: failed!
http://tolweb.org/tree/phylogeny.html: success!
http://oikoarrays.biology.uiowa.edu/Oiko/: failed!
http://www.yeastract.com/: success!
http://verdi.kobic.re.kr/patome_int/: failed!
http://pepr.cnmcresearch.org/: failed!
http://pepcyber.umn.edu/PPEP/: failed!
http://pfd.med.monash.edu.au/: failed!
http://www.phenomicdb.de/: failed!
http://plantmetabolomics.vrac.iastate.edu/ver2/index.php: failed!
http://plantdhs.org: failed!
http://pxgrid.med.monash.edu.au/polyq/: failed!
http://prodom.prabi.fr/: failed!
http://dcv.uhnres.utoronto.ca/SCRIPDB/search: failed!
http://benham.genomecenter.ucdavis.edu/: failed!
http://siRecords.biolead.org: failed!
https://rdb.vlifescience.com: failed!
http://soybeangenome.siu.edu/: failed!
http://subviral.med.uottawa.ca/: failed!
http://mlstoslo.uio.no/: failed!
http://suba.plantenergy.uwa.edu.au/: failed!
http://lifecenter.sgst.cn/bodyfluid/: failed!
http://topofit.ilyinlab.org/: failed!
http://tiara.gmi.ac.kr: failed!
http://www.unipathway.org/: failed!
http://vnd.kobic.re.kr:8080/VnD/: failed!
http://annmap.picr.man.ac.uk/: failed!
http://ccb1.bmi.ac.cn/srnatarbase/: failed!
http://ypa.csbb.ntu.edu.tw/: failed!
http://pssrdb.cdfd.org.in/: failed!
192/1695 failed
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment