-
-
Notifications
You must be signed in to change notification settings - Fork 52
/
predictions.tsv
We can't make this file beautiful and searchable because it's too large.
5833 lines (5833 loc) · 806 KB
/
predictions.tsv
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
pubmed title score
35685362 dbEssLnc: A manually curated database of human and mouse essential lncRNA genes. 1.0
34986597 HMDB 5.0: the Human Metabolome Database for 2022. 0.99
34792145 DiseaseMeth version 3.0: a major expansion and update of the human disease methylation database. 0.98
35363306 The Sickle Cell Disease Ontology: recent development and expansion of the universal sickle cell knowledge representation. 0.98
34761267 The IntAct database: efficient access to fine-grained molecular interaction data. 0.98
34791375 DISCO: a database of Deeply Integrated human Single-Cell Omics data. 0.98
34788826 PHI-base in 2022: a multi-species phenotype database for Pathogen-Host Interactions. 0.97
34850116 PLSDB: advancing a comprehensive database of bacterial plasmids. 0.97
34850941 Database resources of the national center for biotechnology information. 0.97
34747468 HumanNet v3: an improved database of human gene networks for disease research. 0.97
34954899 MPOD: Applications of integrated multi-omics database for medicinal plants. 0.97
34718705 The UCSC Genome Browser database: 2022 update. 0.97
34639237 GreeningDB: A Database of Host-Pathogen Protein-Protein Interactions and Annotation Features of the Bacteria Causing Huanglongbing HLB Disease. 0.97
35126443 GRAND: An Integrated Genome, Transcriptome Resources, and Gene Network Database for <i>Gossypium</i>. 0.97
34741192 The Rat Genome Database (RGD) facilitates genomic and phenotypic data integration across multiple species for biomedical research. 0.97
35202091 HiMoRNA: A Comprehensive Database of Human lncRNAs Involved in Genome-Wide Epigenetic Regulation. 0.97
35692690 A Comprehensive Database for DNA Adductomics. 0.97
35242286 Considerations for constructing a protein sequence database for metaproteomics. 0.97
35779245 dbBIP: a comprehensive bipolar disorder database for genetic research. 0.97
35469024 HORDB a comprehensive database of peptide hormones. 0.97
34893873 MODOMICS: a database of RNA modification pathways. 2021 update. 0.96
35230424 DSDBASE 2.0: updated version of DiSulphide dataBASE, a database on disulphide bonds in proteins. 0.96
34782917 MoG+: a database of genomic variations across three mouse subspecies for biomedical research. 0.96
35388171 eccDNAdb: a database of extrachromosomal circular DNA profiles in human cancers. 0.96
35617175 ADmeth: a manually curated database for the differential methylation in Alzheimer's disease. 0.96
35415670 <i>ChemTastesDB</i>: A curated database of molecular tastants. 0.96
34850956 msRepDB: a comprehensive repetitive sequence database of over 80 000 species. 0.96
35788653 Multi-omics molecular biomarkers and database of osteoarthritis. 0.96
35306049 miRNAFinder: A comprehensive web resource for plant Pre-microRNA classification. 0.95
35854733 Applying FHIR Genomics for Research - From Sequencing to Database. 0.95
34747465 Hymenoptera Genome Database: new genomes and annotation datasets for improved go enrichment and orthologue analyses. 0.95
35515991 Biocomposites from poly(3-hydroxybutyrate-co-3-hydroxyvalerate) and lignocellulosic fillers: Processes stored in data warehouse structured by an ontology. 0.95
35633312 iVenomDB: A manually curated database for insect venom proteins. 0.95
34733322 Gene4HL: An Integrated Genetic Database for Hearing Loss. 0.95
34718745 CompoDynamics: a comprehensive database for characterizing sequence composition dynamics. 0.95
34643708 RGD v2.0: a major update of the ruminant functional and evolutionary genomics database. 0.95
35723975 VIBFREQ1295: A New Database for Vibrational Frequency Calculations. 0.95
35317743 The Xenopus phenotype ontology: bridging model organism phenotype data to human health and development. 0.95
34634815 SomaMutDB: a database of somatic mutations in normal human tissues. 0.95
34792158 InsectBase 2.0: a comprehensive gene resource for insects. 0.95
35094056 DisEnrich: Database of Enriched Regions in Human Dark Proteome. 0.95
34992626 CottonGVD: A Comprehensive Genomic Variation Database for Cultivated Cottons. 0.95
34961276 CottonGen: The Community Database for Cotton Genomics, Genetics, and Breeding Research. 0.94
35857265 The Cerebellar Gene Database: a Collective Database of Genes Critical for Cerebellar Development. 0.94
35164668 D3PM: a comprehensive database for protein motions ranging from residue to domain. 0.94
34723317 3DSNP 2.0: update and expansion of the noncoding genomic variant annotation database. 0.94
35196325 Comparative analyses of parasites with a comprehensive database of genome-scale metabolic models. 0.94
34789143 The protein-protein interaction ontology: for better representing and capturing the biological context of protein interaction. 0.94
35515983 Genomic data resource of type strains of genus <i>Pseudoxanthomonas</i>. 0.94
35298480 dbGSRV: A manually curated database of genetic susceptibility to respiratory virus. 0.94
34747487 INDI-integrated nanobody database for immunoinformatics. 0.94
35437394 Rizoma: a new comprehensive database on traditional uses of Chilean native plants. 0.94
35275211 Carbohydrate Structure Database oligosaccharide conformation tool. 0.94
34768834 "Analyses of the Updated ""Animal rDNA Loci Database"" with an Emphasis on Its New Features." 0.94
34820659 The Data Use Ontology to streamline responsible access to human biomedical datasets. 0.93
35386653 Still SDAPing Along: 20 Years of the Structural Database of Allergenic Proteins. 0.93
35351638 PhenoRerank: A re-ranking model for phenotypic concept recognition pre-trained on human phenotype ontology. 0.93
35383645 Without Commitment to an Ontology, There Could Be No Causal Inference. 0.93
35234850 PSINDB: the postsynaptic protein-protein interaction database. 0.93
35773868 Integration of Biobanking Architecture with Genomics Data: Genomics Integrated Biobanking Ontology (GIBO). 0.93
35809063 RNAloops: a database of RNA multiloops. 0.93
35817066 More phenomenology in psychiatry? Applied ontology as a method towards integration. 0.93
35208885 Biological Nitrogen Removal Database: A Manually Curated Data Resource. 0.93
35754095 DoPI: The Database of Pollinator Interactions. 0.93
35763362 FGDB: a comprehensive graph database of ligand fragments from the Protein Data Bank. 0.93
35662455 The TissueNet v.3 Database: Protein-protein Interactions in Adult and Embryonic Human Tissue contexts. 0.93
34643715 LIRBase: a comprehensive database of long inverted repeats in eukaryotic genomes. 0.93
34643725 CancerSCEM: a database of single-cell expression map across various human cancers. 0.93
35980286 SC2sepsis: sepsis single-cell whole gene expression database. 0.93
34732566 RNALigands: a database and web server for RNA-ligand interactions. 0.93
35124463 DisintegrinDB: The first integrated database resource of disintegrins from snake venoms. 0.92
34986600 ONQUADRO: a database of experimentally determined quadruplex structures. 0.92
34850110 ConsensusPathDB 2022: molecular interactions update as a resource for network biology. 0.92
35186035 TRmir: A Comprehensive Resource for Human Transcriptional Regulatory Information of MiRNAs. 0.92
35580530 Development of a comprehensive database for research on foetal acidosis. 0.92
34630017 Corrigendum: Neuronal-Glial Interaction in a Triple-Transgenic Mouse Model of Alzheimer's Disease: Gene Ontology and Lithium Pathways. 0.92
35637188 A comprehensive database of crystal-bearing magmas for the calibration of a rheological model. 0.92
34986604 The 2022 Nucleic Acids Research database issue and the online molecular biology database collection. 0.92
34718689 ARTS-DB: a database for antibiotic resistant targets. 0.92
35872606 Prenatal phenotyping: A community effort to enhance the Human Phenotype Ontology. 0.92
35774499 Ontology Specific Alternative Splicing Changes in Alzheimer's Disease. 0.92
35370670 ACDB: An Antibiotic Combination DataBase. 0.91
35864133 The Multilingual Picture Database. 0.91
35501320 The 4D Nucleome Data Portal as a resource for searching and visualizing curated nucleomics data. 0.91
35805909 RPpocket: An RNA-Protein Intuitive Database with RNA Pocket Topology Resources. 0.91
35607793 Contribution of Turkey in Liver Transplant Research: A Scopus Database Search. 0.91
35710683 A database of animal metagenomes. 0.91
35487995 ImitateDB: A database for domain and motif mimicry incorporating host and pathogen protein interactions. 0.91
35168785 Unifying the classification of antimicrobial peptides in the antimicrobial peptide database. 0.91
34818005 MSTopDiff: A Tool for the Visualization of Mass Shifts in Deconvoluted Top-Down Proteomics Data for the Database-Independent Detection of Protein Modifications. 0.91
35971622 Toward an ontology of tobacco, nicotine and vaping products. 0.91
34606614 ProNAB: database for binding affinities of protein-nucleic acid complexes and their mutants. 0.91
35095484 PlantMolecularTasteDB: A Database of Taste Active Phytochemicals. 0.91
34672181 A geospatial database management system for the collection of medicinal plants. 0.91
34985769 FPIA: A database for gene fusion profiling and interactive analyses. 0.91
34751388 CEBS update: curated toxicology database with enhanced tools for data integration. 0.91
34877793 GEPSdb: The Gene Expression Database of Poplar under Stress. 0.91
34850118 PRGdb 4.0: an updated database dedicated to genes involved in plant disease resistance process. 0.91
35917546 #Menopause: the menopause ontology project. 0.91
35414055 The brainstem connectome database. 0.91
36043401 EfGD: the Erianthus fulvus genome database. 0.91
35817763 Reference database of teeth images from the Family Bovidae. 0.9
35058458 A global coral-bleaching database, 1980-2020. 0.9
34748836 Comprehensive US database and model for ethanol blend effects on regulated tailpipe emissions. 0.9
35474880 Building a database for energy sufficiency policies. 0.9
36036594 mobileOG-db: a Manually Curated Database of Protein Families Mediating the Life Cycle of Bacterial Mobile Genetic Elements. 0.9
36004795 Citrus Pan-Genome to Breeding Database (CPBD): A comprehensive genome database for citrus breeding. 0.9
35174520 ChikvInt: a Chikungunya virus-host protein-protein interaction database. 0.9
35013360 A taxonomic, genetic and ecological data resource for the vascular plants of Britain and Ireland. 0.9
34925635 Techno-species in the Becoming Towards a Relational Ontology of Multi-species Assemblages (ROMA). 0.9
35134251 Molecular ontology of the parabrachial nucleus. 0.9
35099058 Should a prescription database be used to search uncontrolled severe asthmatics? 0.9
35602616 Application of Data Resource Allocation in Economic Management Information System. 0.9
34736049 PFSA DNA database: A tool to hunt the serial offenders. 0.9
35037225 AgroLD: A Knowledge Graph Database for Plant Functional Genomics. 0.9
34643709 Kincore: a web resource for structural classification of protein kinases and their inhibitors. 0.9
35267146 The Neuron Phenotype Ontology: A FAIR Approach to Proposing and Classifying Neuronal Types. 0.9
35567946 PmiRtarbase: A positive miRNA-target regulations database. 0.9
35941762 FreshOmics: A manually curated and standardized -omics database for investigating freshwater microbiomes. 0.9
34718747 TcoFBase: a comprehensive database for decoding the regulatory transcription co-factors in human and mouse. 0.9
35208198 MetAMDB: Metabolic Atom Mapping Database. 0.9
35654801 CDCDB: A large and continuously updated drug combination database. 0.9
35668025 The Power of Hashtags in Social Media: Lessons Learnt from the Urology Tag Ontology Project. 0.9
35437400 Pladias platform: Technical description of the database structure. 0.9
35296165 Luminance and Contrast of Images in the THINGS Database. 0.9
34643700 dNTPpoolDB: a manually curated database of experimentally determined dNTP pools and pool changes in biological samples. 0.9
35805101 iPCD: A Comprehensive Data Resource of Regulatory Proteins in Programmed Cell Death. 0.9
36140792 Genomic Evolution of ST11 Carbapenem-Resistant <i>Klebsiella pneumoniae</i> from 2011 to 2020 Based on Data from the Pathosystems Resource Integration Center. 0.9
35614082 MusMorph, a database of standardized mouse morphology data for morphometric meta-analyses. 0.9
36031487 Taiwan Controlled Substances Database. 0.9
35266524 PlasticDB: a database of microorganisms and proteins linked to plastic biodegradation. 0.9
35339630 The vegetable SNP database: An integrated resource for plant breeders and scientists. 0.89
35451498 TrBase: A genome and transcriptome database of Temnopleurus reevesii. 0.89
34918225 Standardized database of 400 complex abstract fractals. 0.89
34757056 The AlphaFold Database of Protein Structures: A Biologist's Guide. 0.89
35788654 LBD: a manually curated database of experimentally validated lymphoma biomarkers. 0.89
34791429 NP-MRD: the Natural Products Magnetic Resonance Database. 0.89
35764639 A Global Building Occupant Behavior Database. 0.89
34999124 The PCDDB (Protein Circular Dichroism Data Bank): A Bioinformatics Resource for Protein Characterisations and Methods Development. 0.89
34718717 Therapeutic target database update 2022: facilitating drug discovery with enriched comparative data of targeted agents. 0.89
35318465 Establishment of an open biomedical database for commercial spaceflight. 0.89
35357580 Predicting genes from phenotypes using human phenotype ontology (HPO) terms. 0.89
35147037 PPI-Hotspot<sup>DB</sup>: Database of Protein-Protein Interaction Hot Spots. 0.89
35118058 SPSED: A Signal Peptide Secretion Efficiency Database. 0.89
34756025 Call for a Public Open Database of All Chemical Reactions. 0.89
34755871 BRAD V3.0: an upgraded Brassicaceae database. 0.89
35669712 1 K Medicinal Plant Genome Database: an integrated database combining genomes and metabolites of medicinal plants. 0.89
34747489 BioSamples database: FAIRer samples metadata to accelerate research data management. 0.89
34748542 RESCRIPt: Reproducible sequence taxonomy reference database management. 0.89
35440731 The ProkaBioDen database, a global database of benthic prokaryotic biomasses and densities in the marine realm. 0.89
35799352 HARIBOSS: a curated database of RNA-small molecules structures to aid rational drug design. 0.89
35670730 SilkBase: an integrated transcriptomic and genomic database for Bombyx mori and related species. 0.89
35362581 Views sought on microchip database reform. 0.89
35625024 The Brain Research Hotspot Database (BRHD): A Panoramic Database of the Latest Hotspots in Brain Research. 0.88
36039088 MPoxVR: A comprehensive genomic resource for monkeypox virus variant surveillance. 0.88
34965192 piRNAQuest V.2: an updated resource for searching through the piRNAome of multiple species. 0.88
35689523 Database-driven research and big data analytic approaches in transfusion medicine. 0.88
35782725 DESSO-DB: A web database for sequence and shape motif analyses and identification. 0.88
34603551 The braingraph.org database with more than 1000 robust human connectomes in five resolutions. 0.88
34791383 Echinobase: leveraging an extant model organism database to build a knowledgebase supporting research on the genomics and biology of echinoderms. 0.88
35108094 The Ocean Genome Legacy: A Genomic Resource Repository for Marine Life. 0.88
35774515 RhythmicDB: A Database of Predicted Multi-Frequency Rhythmic Transcripts. 0.88
35226813 Genome Sequence Resource and Annotation of <i>Calonectria montana</i>, an Economically Important Pathogen with a Broad Host Range. 0.88
34658334 The OpenNeuro resource for sharing of neuroscience data. 0.88
35883523 CavitySpace: A Database of Potential Ligand Binding Sites in the Human Proteome. 0.88
36067158 A curated data resource of 214K metagenomes for characterization of the global antimicrobial resistome. 0.88
35881481 Structural signatures: a web server for exploring a database of and generating protein structural features from human cell lines and tissues. 0.88
34838806 Bacteria.guru: Comparative Transcriptomics and Co-Expression Database for Bacterial Pathogens. 0.88
34657929 Database-Driven Prosthodontics-Future of Digital Dentistry. 0.88
35007753 An annotated corpus from biomedical articles to construct a drug-food interaction database. 0.88
35437393 Database of butterfly and moth observations in the Netherlands: research from 1947-2020. 0.88
35944213 massDatabase: utilities for the operation of the public compound and pathway database. 0.88
35599136 Interactive database of genome editing applications in crops and future policy making in the European Union. 0.87
35447495 The STRESS-NL database: A resource for human acute stress studies across the Netherlands. 0.87
34826364 Illustrative Tutorials for ProThermDB: Thermodynamic Database for Proteins and Mutants. 0.87
34718741 qPTMplants: an integrative database of quantitative post-translational modifications in plants. 0.87
35741531 Retrieval and Ranking of Combining Ontology and Content Attributes for Scientific Document. 0.87
35481632 Membranome 3.0: Database of single-pass membrane proteins with AlphaFold models. 0.87
35605006 PltRNAdb: Plant transfer RNA database. 0.87
35356542 KDmarkers: A biomarker database for investigating epigenetic methylation and gene expression levels in Kawasaki disease. 0.87
35841031 Performance assessment of ontology matching systems for FAIR data. 0.87
34593819 AusTraits, a curated plant trait database for the Australian flora. 0.87
34843251 CGRdb2.0: A Python Database Management System for Molecules, Reactions, and Chemical Data. 0.87
34680914 Catalogue for Transmission Genetics in Arabs (CTGA) Database: Analysing Lebanese Data on Genetic Disorders. 0.87
34648133 SMART v1.0: A Database for Small Molecules with Functional Implications in Plants. 0.87
36005997 DEVELOPMENT OF DATABASE STRUCTURES AND DATA EXCHANGE PRINCIPLES FOR NUCLEAR DECOMMISSIONING PLANNING. 0.87
35579453 iSoybean: A database for the mutational fingerprints of soybean. 0.87
35331861 Draft genome sequence of Indian mulberry (Morus indica) provides a resource for functional and translational genomics. 0.87
35776535 PHILM2Web: A high-throughput database of macromolecular host-pathogen interactions on the Web. 0.87
35156369 Annotated Protein Database Using Known Cleavage Sites for Rapid Detection of Secreted Proteins. 0.87
35444317 The Human Pangenome Project: a global resource to map genomic diversity. 0.87
35149324 Implementation of the EPICS2017 database for photons in Geant4. 0.87
34732592 The Japan Neurosurgical Database: Statistics Update 2018 and 2019. 0.87
35205287 Gene Ontology Groups and Signaling Pathways Regulating the Process of Avian Satellite Cell Differentiation. 0.87
35380656 JaponicusDB: rapid deployment of a model organism database for an emerging model species. 0.87
35348639 hCoronavirusesDB: an integrated bioinformatics resource for human coronaviruses. 0.87
35866653 BMSS2: A Unified Database-Driven Modeling Tool for Systematic Biomodel Selection. 0.87
34897464 New data and collaborations at the Saccharomyces Genome Database: updated reference genome, alleles, and the Alliance of Genome Resources. 0.87
35112706 Molecular Subtyping Resource: a user-friendly tool for rapid biological discovery from transcriptional data. 0.87
34698892 Progress towards completing the mutant mouse null resource. 0.87
34718738 The Eukaryotic Linear Motif resource: 2022 release. 0.87
35024864 PlantNexus: A Gene Co-expression Network Database and Visualization Tool for Barley and Sorghum. 0.87
35069469 CANT-HYD: A Curated Database of Phylogeny-Derived Hidden Markov Models for Annotation of Marker Genes Involved in Hydrocarbon Degradation. 0.86
34625104 An ontology network for Diabetes Mellitus in Mexico. 0.86
35389344 Protist.guru: A Comparative Transcriptomics Database for Protists. 0.86
35922448 A Multi-Modal Gait Database of Natural Everyday-Walk in an Urban Environment. 0.86
35532184 Carrier frequency of autosomal recessive genetic conditions in diverse populations: Lessons learned from the genome aggregation database. 0.86
34836949 A database of global coastal conditions. 0.86
34768782 LegumeSSRdb: A Comprehensive Microsatellite Marker Database of Legumes for Germplasm Characterization and Crop Improvement. 0.86
34791415 Ensembl Genomes 2022: an expanding genome resource for non-vertebrates. 0.86
34651181 The World Spider Trait database: a centralized global open repository for curated data on spider traits. 0.86
34752570 The Drug Manufacturer as a Drug Information Resource. 0.86
35883181 DCSO: towards an ontology for machine-actionable data management plans. 0.86
35124170 The Human Eye Transcriptome Atlas: A searchable comparative transcriptome database for healthy and diseased human eye tissue. 0.86
35486593 An Improved Genome Sequence Resource of <i>Bipolaris maydis</i>, Causal Agent of Southern Corn Leaf Blight. 0.86
35140241 A construction classification system database for understanding resource use in building construction. 0.86
35987763 FunAndes - A functional trait database of Andean plants. 0.86
35159786 Collection of Controlled Nanosafety Data-The CoCoN-Database, a Tool to Assess Nanomaterial Hazard. 0.86
34727496 The Open Reaction Database. 0.86
34962976 RAxML Grove: An empirical Phylogenetic Tree Database. 0.86
34850139 CircNet 2.0: an updated database for exploring circular RNA regulatory networks in cancers. 0.86
35662458 GWYRE: A Resource for Mapping Variants onto Experimental and Modeled Structures of Human Protein Complexes. 0.86
35650204 GriddingMachine, a database and software for Earth system modeling at global and regional scales. 0.86
34888400 Infectious Disease Images: A Remarkable, Free Resource. 0.86
34718739 The European Variation Archive: a FAIR resource of genomic variation for all species. 0.86
35568950 SynBioStrainFinder: A microbial strain database of manually curated CRISPR/Cas genetic manipulation system information for biomanufacturing. 0.86
34883857 Cloud- and Fog-Integrated Smart Grid Model for Efficient Resource Utilisation. 0.86
35513443 A database of calculated solution parameters for the AlphaFold predicted protein structures. 0.86
35445712 Integrative multi-omics database (iMOMdb) of Asian pregnant women. 0.86
34812431 A call for a more comprehensive SARS-CoV-2 sequence database for Brazil. 0.86
35085873 Age and indication for pediatric septoplasty in the NSQIP-P database. 0.85
35281847 CerealESTDb: A Comprehensive Resource for Abiotic Stress-Responsive Annotated ESTs With Predicted Genes, Gene Ontology, and Metabolic Pathways in Major Cereal Crops. 0.85
34634795 ZOVER: the database of zoonotic and vector-borne viruses. 0.85
34849665 Corrigendum to: QSDB-a graphical Quorum Sensing Database. 0.85
35999829 Integrative Resource Model of Workplace Inclusion for Reduced Inequality: Conservation of Resources Perspective. 0.85
35184383 Database search engines and target database features impinge upon the identification of post-translationally cis-spliced peptides in HLA class I immunopeptidomes. 0.85
35469349 PregTox: A Resource of Knowledge about Drug Fetal Toxicity. 0.85
35673159 Ontology for Overcrowding Management in Emergency Department. 0.85
34630517 NetGenes: A Database of Essential Genes Predicted Using Features From Interaction Networks. 0.85
35898309 CARs-DB: A Database of Cryptic Amyloidogenic Regions in Intrinsically Disordered Proteins. 0.85
34718712 PCMDB: a curated and comprehensive resource of plant cell markers. 0.85
34615485 The bayberry database: a multiomic database for Myrica rubra, an important fruit tree with medicinal value. 0.85
35892972 Database of Potential Promoter Sequences in the <i>Capsicum annuum</i> Genome. 0.85
35795870 A Programmable Ontology Encompassing the Functional Logic of the <i>Drosophila</i> Brain. 0.85
35150127 GNIFdb: a neoantigen intrinsic feature database for glioma. 0.85
35504357 The Organ-Disease Annotations (ODiseA) Database of Hereditary Diseases and Inflicted Tissues. 0.85
35173163 A database of common vampire bat reports. 0.85
35385321 Genome Sequence Resource for <i>Bipolaris zeicola,</i> the Cause of Northern Corn Leaf Spot Disease. 0.85
35104317 TMQuery: A database of precomputed template modeling scores for assessment of protein structural similarity. 0.85
35233554 BIGG, the international database of GRADE Guidelines. 0.85
35701784 Play, Learn, and Teach Outdoors-Network (PLaTO-Net): terminology, taxonomy, and ontology. 0.85
35796594 Curation of a reference database of COI sequences for insect identification through DNA metabarcoding: COins. 0.85
35752639 ORMEF: a Mediterranean database of exotic fish records. 0.85
35111182 The Grape Gene Reference Catalogue as a Standard Resource for Gene Selection and Genetic Improvement. 0.85
35627130 Pitaya Genome and Multiomics Database (PGMD): A Comprehensive and Integrative Resource of <i>Selenicereus undatus</i>. 0.85
35058454 An EPA database on the effects of engineered nanomaterials-NaKnowBase. 0.85
34634797 The Ensembl COVID-19 resource: ongoing integration of public SARS-CoV-2 data. 0.85
35618868 A trait database and updated checklist for European subterranean spiders. 0.85
35061267 Cattle to be included in Wales' livestock ID database. 0.85
35732804 A set of gene knockouts as a resource for global lipidomic changes. 0.85
35378455 Sampling strategy, characteristics and representativeness of the InGef research database. 0.85
34762696 A resource for improved predictions of Trypanosoma and Leishmania protein three-dimensional structure. 0.85
34850155 dbAMP 2.0: updated resource for antimicrobial peptides with an enhanced scanning method for genomic and proteomic data. 0.85
35552640 DFBP: A Comprehensive Database of Food-Derived Bioactive Peptides for Peptidomics Research. 0.85
35680916 CAN-SAR: A database of Canadian species at risk information. 0.84
34954795 CoDNaS-RNA: a database of Conformational Diversity in the Native State of RNA. 0.84
35348648 Diseases 2.0: a weekly updated database of disease-gene associations from text mining and data integration. 0.84
34718696 Proteome-pI 2.0: proteome isoelectric point database update. 0.84
35800688 The Design of Personalized Education Resource Recommendation System under Big Data. 0.84
35865139 What do neuroanatomical networks reveal about the ontology of human cognitive abilities? 0.84
35883475 A Physics-Guided Neural Network for Predicting Protein-Ligand Binding Free Energy: From Host-Guest Systems to the PDBbind Database. 0.84
35998418 Stuttering, family history and counselling: A contemporary database. 0.84
35130035 A Genome Sequence Resource of <i>Nigrospora sphaerica</i> Causing Fruit Dried-Shrink Disease in <i>Akebia trifoliata</i>. 0.84
34594444 Development of an Online General Biology Open Educational Resource (OER) Laboratory Manual. 0.84
35008554 Extension of the Human Fibrinogen Database with Detailed Clinical Information-The αC-Connector Segment. 0.84
34850130 TissueNexus: a database of human tissue functional gene networks built with a large compendium of curated RNA-seq data. 0.84
34977976 PlantRep: a database of plant repetitive elements. 0.84
35860225 Small Molecule Antiviral Compound Collection (SMACC): a database to support the discovery of broad-spectrum antiviral drug molecules. 0.84
35220981 The object of sense and experiment': the ontology of sensation in William Hunter's investigation of the human gravid uterus. 0.84
35859338 The Codon Statistics Database: A Database of Codon Usage Bias. 0.84
35089481 The Brazilian compound library (BraCoLi) database: a repository of chemical and biological information for drug design. 0.84
35559654 Complete Genome Sequence Resource for <i>Xanthomonas translucens</i> pv. <i>undulosa</i> MAI5034, a Wheat Pathogen from Uruguay. 0.84
34921678 CropPol: A dynamic, open and global database on crop pollination. 0.84
35005803 NHAMCS database variables limit healthcare disparities research. 0.84
36074693 Whole-Genome Sequence Resource of <i>Phytophthora pini</i>, the Causal Pathogen of Foliage Blight and Shoot Dieback of <i>Rhododendron pulchrum</i>. 0.84
34747470 AMDB: a database of animal gut microbial communities with manually curated metadata. 0.84
35452518 PCRMS: a database of predicted cis-regulatory modules and constituent transcription factor binding sites in genomes. 0.84
35392044 A Human Resource Demand Forecasting Method Based on Improved BP Algorithm. 0.84
35806459 TritiKBdb: A Functional Annotation Resource for Deciphering the Complete Interaction Networks in Wheat-Karnal Bunt Pathosystem. 0.84
35997339 Bio-Strings: A Relational Database Data-Type for Dealing with Large Biosequences. 0.84
34839012 ASER: Animal Sex Reversal Database. 0.84
35208748 PREGO: A Literature and Data-Mining Resource to Associate Microorganisms, Biological Processes, and Environment Types. 0.84
35920330 ABC portal: a single-cell database and web server for blood cells. 0.84
35892614 Development of an International Database for a Rare Genetic Disorder: The <i>MECP2</i> Duplication Database (MDBase). 0.84
34616633 Struo2: efficient metagenome profiling database construction for ever-expanding microbial genome datasets. 0.84
35139662 High-Quality Genome Sequence Resource of the Taro Pathogen <i>Phytophthora colocasiae</i>. 0.84
34770545 Fault-Tolerant and Data-Intensive Resource Scheduling and Management for Scientific Applications in Cloud Computing. 0.84
34972050 A quantitative reliability metric for querying large database. 0.84
34904159 Data Resource Profile: The Hong Kong Diabetes Surveillance Database (HKDSD). 0.84
35937769 The Political Ontology of Corporate Social Responsibility: Obscuring the Pluriverse in Place. 0.84
35886662 Exe-Muscle: An Exercised Human Skeletal Muscle Gene Expression Database. 0.84
35932227 TimeTree 5: An Expanded Resource for Species Divergence Times. 0.84
36049666 TIGER: A Web Portal of Tumor Immunotherapy Gene Expression Resource. 0.83
35817109 Building a small fire database for Sub-Saharan Africa from Sentinel-2 high-resolution images. 0.83
35668820 Ontology and Politics: Interdependence and Radical Contingency in Merleau-Ponty's Political Interworld. 0.83
35292173 Stealthy false data injection attacks with resource constraints against multi-sensor estimation systems. 0.83
35217168 RiboGrove: a database of full-length prokaryotic 16S rRNA genes derived from completely assembled genomes. 0.83
34916547 Development of an affective database made of interactive virtual environments. 0.83
34860037 Effective Resource Competition Model for Species Coexistence. 0.83
36089973 Enterprise Human Resource Optimization Algorithm Using PSO Model in Big Data and Complex Environment. 0.83
34761274 scEnhancer: a single-cell enhancer resource with annotation across hundreds of tissue/cell types in three species. 0.83
34723326 GreeNC 2.0: a comprehensive database of plant long non-coding RNAs. 0.83
35778384 A comprehensive resource for Bordetella genomic epidemiology and biodiversity studies. 0.83
34850161 The carbohydrate-active enzyme database: functions and literature. 0.83
35710792 A harmonized chemical monitoring database for support of exposure assessments. 0.83
34795792 An Efficient Parallelized Ontology Network-Based Semantic Similarity Measure for Big Biomedical Document Clustering. 0.83
34739591 Development of the Swiss Database for dosing medicinal products in pediatrics. 0.83
34897429 The genome of the zebra mussel, Dreissena polymorpha: a resource for comparative genomics, invasion genetics, and biocontrol. 0.83
35401612 A Genetic Resource for Rice Improvement: Introgression Library of Agronomic Traits for All AA Genome <i>Oryza</i> Species. 0.83
34893085 Data is the new oil: citizen science and informed consent in an era of researchers handling of an economically valuable resource. 0.83
34723198 High Performance Computing Framework for Tera-Scale Database Search of Mass Spectrometry Data. 0.83
35735230 Centralizing neurofibromatosis experimental tool knowledge with the NF Research Tools Database. 0.83
35347145 An expert-curated global database of online newspaper articles on spiders and spider bites. 0.83
35285671 Genome Sequence Resource of a Quorum-Quenching Biocontrol Agent, <i>Pseudomonas nitroreducens</i> HS-18. 0.83
35871665 Co-prescription of metoprolol and CYP2D6-inhibiting antidepressants before and after implementation of an optimized drug interaction database in Norway. 0.83
35834412 A Reference Genome Sequence Resource for the Sugar Beet Root Rot Pathogen <i>Aphanomyces cochlioides</i>. 0.83
35480326 Whole-Genome-Based Web Genomic Resource for Water Buffalo (<i>Bubalus bubalis</i>). 0.83
36017240 Human Resource Data Integration System Based on Artificial Intelligence Environment. 0.83
35061087 NucPosDB: a database of nucleosome positioning in vivo and nucleosomics of cell-free DNA. 0.83
35758513 GinkgoDB: an ecological genome database for the living fossil, Ginkgo biloba. 0.83
35594798 A database-guided integrated strategy for comprehensive chemical profiling of traditional Chinese medicine. 0.83
35259302 Draft Genome Sequence Resource of '<i>Fragaria</i> √ó <i>ananassa</i>' Phyllody Phytoplasma Strain StrPh-CL from Chilean Strawberry. 0.83
35652265 InterCellDB: A User-Defined Database for Inferring Intercellular Networks. 0.83
34867425 A Database of Drug Repurposing Clinical Trials in Oncology. 0.82
35875176 PtRNAdb: a web resource of plant tRNA genes from a wide range of plant species. 0.82
34720637 Biovera-Epi: A new database on species diversity, community composition and leaf functional traits of vascular epiphytes along gradients of elevation and forest-use intensity in Mexico. 0.82
35463284 Enterprise Privacy Resource Optimization and Big Data Intelligent Management Strategy Oriented to the Internet of Things. 0.82
35460467 SmGDB: genome database of Salvia miltiorrhiza, an important TCM Plant. 0.82
34986596 The Human Proteoform Atlas: a FAIR community resource for experimentally derived proteoforms. 0.82
35361782 Caltech Conte Center, a multimodal data resource for exploring social cognition and decision-making. 0.82
35954092 The Large and Diverse Family of Mediterranean Flat Breads: A Database. 0.82
35645641 Online First Publication: A Resource for Authors. 0.82
34839499 [Introduction and interpretation of the updated contents of the International System for Human Cytogenomic Nomenclature]. 0.82
35366296 Genome resource banking for wildlife conservation: promises and caveats. 0.82
34883985 RM-ADR: Resource Management Adaptive Data Rate for Mobile Application in LoRaWAN. 0.82
34820191 Biologically-oriented mud volcano database: muddy_db. 0.82
34788852 dbPTM in 2022: an updated database for exploring regulatory networks and functional associations of protein post-translational modifications. 0.82
34850920 miRTarBase update 2022: an informative resource for experimentally validated miRNA-target interactions. 0.82
35018963 New Homeopathic Medicines proposal: a database made available in three free-access bilingual digital books. 0.82
35685370 DisPhaseDB: An integrative database of diseases related variations in liquid-liquid phase separation proteins. 0.82
35191744 Practical Messages from Large Database Studies of Contrast Media Reactions. 0.82
34608157 The Avian Diet Database as a source of quantitative information on bird diets. 0.82
35000252 Plant cytoplasmic ribosomal proteins: an update on classification, nomenclature, evolution and resources. 0.82
35269811 Pangenomes as a Resource to Accelerate Breeding of Under-Utilised Crop Species. 0.82
34664666 ASMdb: a comprehensive database for allele-specific DNA methylation in diverse organisms. 0.82
35391615 Identification of Chemical-Disease Associations Through Integration of Molecular Fingerprint, Gene Ontology and Pathway Information. 0.82
34656056 SuperTCM: A biocultural database combining biological pathways and historical linguistic data of Chinese Materia Medica for drug development. 0.82
35456378 Recently Integrated <i>Alu</i> Elements in Capuchin Monkeys: A Resource for <i>Cebus</i>/<i>Sapajus</i> Genomics. 0.82
35881929 Complete Genome Sequence Resource for <i>Pseudomonas amygdali</i> pv. <i>loropetali</i> Strain AAC Causing Bacterial Gall of <i>Loropetalum chinense</i>. 0.82
34949181 The biology of medicinal resource substitution in Salvia. 0.82
34718728 VEuPathDB: the eukaryotic pathogen, vector and host bioinformatics resource center. 0.82
35190711 The ConTraSt database for analysing and comparing empirical studies of consciousness theories. 0.82
35610375 Frustration over Chinese academic database charges. 0.81
35499157 The Complete Genome Resource of <i>Xanthomonas axonopodis</i> pv. <i>glycines</i> ICMP5732 Causing Pustule Disease on Soybean. 0.81
36108414 SEIR-FMi: A coronavirus disease epidemiological model based on intra-city movement, inter-city movement and medical resource investment. 0.81
36018807 DupScan: predicting and visualizing vertebrate genome duplication database. 0.81
35491948 Complete Genome Sequences of Four Strains of <i>Erwinia tracheiphila</i>: A Resource for Studying a Bacterial Plant Pathogen with a Highly Complex Genome. 0.81
34856461 The freshwater water flea Daphnia magna NIES strain genome as a resource for CRISPR/Cas9 gene targeting: The glutathione S-transferase omega 2 gene. 0.81
35386979 The COMPARE Database: A Public Resource for Allergen Identification, Adapted for Continuous Improvement. 0.81
34610644 Natural Language Mapping of Electrocardiogram Interpretations to a Standardized Ontology. 0.81
34738791 AroCageDB: A Web-Based Resource for Aromatic Cage Binding Sites and Their Intrinsic Ligands. 0.81
35524941 The First Genome of the Balearic Shearwater (Puffinus mauretanicus) Provides a Valuable Resource for Conservation Genomics and Sheds Light on Adaptation to a Pelagic lifestyle. 0.81
34882610 Opioid Prescribing Patterns of Optometrists in the Medicare Part D Database. 0.81
35360410 Stacked deep analytic model for human activity recognition on a UCI HAR database. 0.81
34751399 Priority index: database of genetic targets in immune-mediated disease. 0.81
34669962 UbiBrowser 2.0: a comprehensive resource for proteome-wide known and predicted ubiquitin ligase/deubiquitinase-substrate interactions in eukaryotic species. 0.81
34850907 JASPAR 2022: the 9th release of the open-access database of transcription factor binding profiles. 0.81
35641740 An integrated methodology for green human resource management in construction industry. 0.81
35359334 Creating a User-Friendly and Open-Access Gene Expression Database for Comparing Embryonic Development and Regeneration in Nematostella vectensis. 0.81
34958914 Chemical-damage MINE: A database of curated and predicted spontaneous metabolic reactions. 0.81
35383183 DarkCideS 1.0, a global database for bats in karsts and caves. 0.81
35789395 GGDB: A Grameneae genome alignment database of homologous genes hierarchically related to evolutionary events. 0.81
34694511 Emergent correlations in gene expression dynamics as footprints of resource competition. 0.81
34846300 Investigation of the representativeness of the German IQVIA Vaccine Analyzer database. 0.81
35790740 CaliPopGen: A genetic and life history database for the fauna and flora of California. 0.81
34603736 Research on the establishment and application of protein fingerprint spectrum database of <i>Burkholderia pseudomallei</i> in Hainan Province China. 0.81
35685163 An Optimization Method for Enterprise Resource Integration Based on Improved Particle Swarm Optimization. 0.81
35669959 First genomic resource for an endangered neotropical mega-herbivore: the complete mitochondrial genome of the forest-dweller (Baird's) tapir (<i>Tapirus bairdii</i>). 0.81
35472132 ROADMAPS: An Online Database of Response Data, Dosing Regimens, and Toxicities of Approved Oncology Drugs as Single Agents to Guide Preclinical In Vivo Studies. 0.81
35670735 The Brassicaceae genome resource (TBGR): A comprehensive genome platform for Brassicaceae plants. 0.81
34838686 The 2021 annual report of DataDerm: The database of the American Academy of Dermatology. 0.81
34642074 Extensive database of MSW shear strength parameters obtained from laboratorial direct shear tests: Proposal for data classification. 0.81
35300014 A Database on Mycorrhizal Traits of Chinese Medicinal Plants. 0.81
34645321 Genome Resource for <i>Elsinoë batatas</i>, the Causal Agent of Stem and Foliage Scab Disease of Sweet Potato. 0.81
35246539 Active label cleaning for improved dataset quality under resource constraints. 0.81
35227289 PSnpBind: a database of mutated binding site protein-ligand complexes constructed using a multithreaded virtual screening workflow. 0.81
34900134 A comprehensive transcription factor and DNA-binding motif resource for the construction of gene regulatory networks in <i>Botrytis cinerea</i> and <i>Trichoderma atroviride</i>. 0.81
35881928 Genome Sequence Resource of <i>Albifimbria verrucaria</i> Causing the Leaf Spot Disease of the Spinach Plant <i>Spinacia oleracea</i>. 0.81
35187483 Near-death experiences and the importance of transparency in subjectivity, ontology and epistemology. 0.81
34741470 Information sourcing by dog owners in the UK: Resource selection and perceptions of knowledge. 0.81
35382633 Multicenter lupus register from Argentina, the RELESSAR database: Influence of ethnicity on disease phenotype. 0.81
34850133 PRODORIC: state-of-the-art database of prokaryotic gene regulation. 0.81
35362561 FoRAGE database: A compilation of functional responses for consumers and parasitoids. 0.81
35377253 Developing a pneumonia diagnosis ontology from multiple knowledge sources. 0.81
35028657 SITVITBovis-a publicly available database and mapping tool to get an improved overview of animal and human cases caused by Mycobacterium bovis. 0.81
35762265 metaPR<sup>2</sup> : A database of eukaryotic 18S rRNA metabarcodes with an emphasis on protists. 0.81
34938939 The genome of the endangered <i>Macadamia jansenii</i> displays little diversity but represents an important genetic resource for plant breeding. 0.81
34645282 Complete Genome Sequence Resource for <i>Xanthomonas fragariae</i> Causing Crown Infection Pockets in Strawberry. 0.81
34964845 https://www.fungiofpakistan.com: a continuously updated online database of fungi in Pakistan. 0.8
35957333 Graph-Based Resource Allocation for Integrated Space and Terrestrial Communications. 0.8
34936284 [Global centennial research and the internationalization of acupuncture and moxibustion: in the perspective of SCI database (1921-2020)]. 0.8
35020925 FishmiRNA: An Evolutionarily Supported MicroRNA Annotation and Expression Database for Ray-Finned Fishes. 0.8
35543254 met v1: expanding on old estimations of biodiversity from eDNA with a new database framework. 0.8
35796973 Extending and Running the Mosquito Small RNA Genomics Resource Pipeline. 0.8
35953768 Twinkle twinkle brittle star: the draft genome of Ophioderma brevispinum (Echinodermata: Ophiuroidea) as a resource for regeneration research. 0.8
34732059 High-Quality Genome Sequence Resource of a Rice False Smut Fungus <i>Ustilaginoidea virens</i> Isolate, UV-FJ-1. 0.8
35673010 POKR: Building a Computable Heterogeneous Knowledge Resource for Precision Oncology. 0.8
35100348 Database of glutamate-gated chloride (GluCl) subunits across 125 nematode species: patterns of gene accretion and sequence diversification. 0.8
35074827 NDI: A Platform-Independent Data Interface and Database for Neuroscience Physiology and Imaging Experiments. 0.8
34974794 Regulatory network of metformin on adipogenesis determined by combining high-throughput sequencing and GEO database. 0.8
34788390 At-C-RNA database, a one-stop source for information on circRNAs in Arabidopsis thaliana in a unified format. 0.8
34764425 Recommendations for future extensions to the HGNC gene fusion nomenclature. 0.8
34702185 piRNA-IPdb: a PIWI-bound piRNAs database to mining NGS sncRNA data and beyond. 0.8
35187026 Development of the Food Label Information Program: A Comprehensive Canadian Branded Food Composition Database. 0.8
35346934 Adapting an In-Clinic Resource Navigator Program to a Virtual Referral Model. 0.8
35922496 Major chemical database investigates hundreds of suspicious crystal structures. 0.8
35227887 Bridging informatics and medicinal inorganic chemistry: Toward a database of metallodrugs and metallodrug candidates. 0.8
35650216 China industrial environmental database 1998-2015. 0.8
34718746 G4LDB 2.2: a database for discovering and studying G-quadruplex and i-Motif ligands. 0.8
34721190 Baby's Online Live Database: An Open Platform for Developmental Science. 0.8
35134345 The Lipid Droplet Knowledge Portal: A resource for systematic analyses of lipid droplet biology. 0.8
35334677 A New NVM Device Driver for IoT Time Series Database. 0.8
35357216 High-Quality Genome Sequence Resource of <i>Elsinoë arachidis</i> Strain LY-HS-1, Causing Scab Disease of Peanut. 0.8
34938465 Soil resource availability is much more important than soil resource heterogeneity in determining the species diversity and abundance of karst plant communities. 0.8
35083628 Inner Conflict of Personality in the Paradigm of Existential-Phenomenological Ontology. 0.8
34729303 MCDB: A comprehensive curated mitotic catastrophe database for retrieval, protein sequence alignment, and target prediction. 0.8
34798558 Depression and suicidality among Hispanics with epilepsy: Findings from the Managing Epilepsy Well (MEW) Network integrated database. 0.8
35840601 Version 3 of the Global Aridity Index and Potential Evapotranspiration Database. 0.8
35396494 A Saccharomyces eubayanus haploid resource for research studies. 0.8
34785997 What Can We Learn from the Functional Clustering of Mortality Data? An Application to the Human Mortality Database. 0.8
35234034 QUAM-AFM: A Free Database for Molecular Identification by Atomic Force Microscopy. 0.8
35396615 Face templates for the Chicago Face Database. 0.8
34791371 AlphaFold Protein Structure Database: massively expanding the structural coverage of protein-sequence space with high-accuracy models. 0.8
35242899 Measured solar irradiance data for resource assessment at four sites in Geba catchment, Tigray, North Ethiopia. 0.8
34684004 Curated Database and Preliminary AutoML QSAR Model for 5-HT1A Receptor. 0.8
35703577 Tallo: A global tree allometry and crown architecture database. 0.8
34751395 LncRNAWiki 2.0: a knowledgebase of human long non-coding RNAs with enhanced curation model and database system. 0.8
34615987 HUGO Gene Nomenclature Committee (HGNC) recommendations for the designation of gene fusions. 0.8
35674384 Chromosomal-level reference genome assembly of the North American wolverine (Gulo gulo luscus): a resource for conservation genomics. 0.79
34680933 The Distribution of <i>Campylobacter jejuni</i> Virulence Genes in Genomes Worldwide Derived from the NCBI Pathogen Detection Database. 0.79
35657591 Proteoform Identification and Quantification Using Intact Protein Database Search Engine ProteinGoggle. 0.79
35526357 FoodMicrobionet v4: A large, integrated, open and transparent database for food bacterial communities. 0.79
35111927 Multi-resource collaborative optimization for adaptive virtual machine placement. 0.79
35459320 Clustering a database of optically absorbing organic molecules via a hierarchical fingerprint scheme that categorizes similar functional molecular fragments. 0.79
34661446 Genome Sequence Resource of the Causal Agent of Persimmon Anthracnose, <i>Colletotrichum horii</i> Strain SD010 from China. 0.79
35352997 Microbial Identification Using rRNA Operon Region: Database and Tool for Metataxonomics with Long-Read Sequence. 0.79
35926585 Genome Sequence Resource for Strains of <i>Pseudomonas syringae</i> Phylogroup 2b and <i>P. viridiflava</i> Phylogroup 7a Causing Bacterial Stem Blight of Alfalfa. 0.79
34815988 <i>MUG500+</i>: Database of 500 high-resolution healthy human skulls and 29 craniotomy skulls and implants. 0.79
35728340 A new semantic resource responding to the principles of Open Science: The meat thesaurus as an IT tool for dialogue between sector actors. 0.79
35900347 <i>IDphy</i>: An international online resource for molecular and morphological identification of <i>Phytophthora</i>. 0.79
35761618 Quorum Sensing (QS)-regulated target predictions of Hafnia alvei H4 based on the joint application of genome and STRING database. 0.79
34604303 SeamDock: An Interactive and Collaborative Online Docking Resource to Assist Small Compound Molecular Docking. 0.79
34791440 proChIPdb: a chromatin immunoprecipitation database for prokaryotic organisms. 0.79
35438356 New Data and New Features of the FunRiceGenes (Functionally Characterized Rice Genes) Database: 2021 Update. 0.79
34764987 GeneMarkeR: A Database and User Interface for scRNA-seq Marker Genes. 0.79
35615022 OncoboxPD: human 51 672 molecular pathways database with tools for activity calculating and visualization. 0.79
34778638 New Antagonists of the Membrane Androgen Receptor OXER1 from the ZINC Natural Product Database. 0.79
35903143 Camel Proteins and Enzymes: A Growing Resource for Functional Evolution and Environmental Adaptation. 0.79
35020790 MS-Decipher: a user-friendly proteome database search software with an emphasis on deciphering the spectra of O-linked glycopeptides. 0.79
35701420 Implementing the reuse of public DIA proteomics datasets: from the PRIDE database to Expression Atlas. 0.79
35259003 Genome Resource of <i>Pseudomonas chlororaphis</i> L5734: A Bacterium Antagonistic to the Mulberry Gray Mold Pathogen <i>Botrytis cinerea</i>. 0.79
35277958 FibROAD: a manually curated resource for multi-omics level evidence integration of fibrosis research. 0.79
35357215 Whole-Genome Sequence Resource of Indian Race 4 of <i>Xanthomonas campestris</i> pv. <i>campestris</i>, the Causal Agent of Black Rot Disease of <i>Brassica oleracea</i> var. <i>capitata</i>. 0.79
35101846 Patterns of genomic interrelatedness of publicly available samples in the TB portals database. 0.79
35259299 Genome Resource of American Ginseng Black Spot Pathogen <i>Alternaria panax</i>. 0.79
35102160 SpermTree, a species-level database of sperm morphology spanning the animal tree of life. 0.79
35202531 Addendum to Proposal for Human Respiratory Syncytial Virus Nomenclature below the Species Level. 0.79
35187484 Response to: Near-death experiences and the importance of transparency in subjectivity, ontology and epistemology. 0.79
35331329 Optimal resource allocation with spatiotemporal transmission discovery for effective disease control. 0.79
35156024 HKG: an open genetic variant database of 205 Hong Kong cantonese exomes. 0.79
34959759 "Development of an Unified Food Composition Database for the European Project ""Stance4Health""." 0.79
35678223 Tree Parzen estimator for global geometry optimization: A benchmark and database of experimental gas-phase structures of organic molecules. 0.79
35731837 An open-access database of infectious disease transmission trees to explore superspreader epidemiology. 0.79
36053873 Resource availability drives bacteria community resistance to pathogen invasion via altering bacterial pairwise interactions. 0.79
35176146 TransformerGO: Predicting protein-protein interactions by modelling the attention between sets of gene ontology terms. 0.79
34844546 GreenMolBD: Nature Derived Bioactive Molecules' Database. 0.79
34850162 eQuilibrator 3.0: a database solution for thermodynamic constant estimation. 0.79
35445695 A3D Database: Structure-based Predictions of Protein Aggregation for the Human Proteome. 0.78
35762882 RiceNCexp: A Resource for Rice Non-coding RNA Co-Expression Atlas Based on Massive RNA-seq and Small-RNA seq Data. 0.78
35775963 Resource article: A new category of SJI publications. 0.78
36060809 PanCircBase: An online resource for the exploration of circular RNAs in pancreatic islets. 0.78
35599823 An updated database of human maximum skin fluxes and epidermal permeability coefficients for drugs, xenobiotics, and other solutes applied as aqueous solutions. 0.78
35181156 Database Research in Acute Kidney Injury: Time to Take Stock? 0.78
34897852 BGvar: A comprehensive resource for blood group immunogenetics. 0.78
35952423 North East India medicinal plants database (NEI-MPDB). 0.78
34626475 Food Enzyme Database (FEDA): a web application gathering information about food enzyme preparations available on the European market. 0.78
34750820 A simulated crime scene footwear impression database for teaching and research purposes. 0.78
34695984 GO-DEVS: Storage and Retrieval System for DEVS Models Using Graph and Ontology Representation. 0.78
35465493 Human Resource Practices for Corporate Social Responsibility: Evidence From Korean Firms. 0.78
35402888 Expanding DNA database effectiveness. 0.78
34885724 SugarDrawer: A Web-Based Database Search Tool with Editing Glycan Structures. 0.78
35697698 A database of anti-coronavirus peptides. 0.78
35134393 Indications related to antidepressant prescribing in the Nivel-PCD database and the SIDIAP database. 0.78
35689209 Human resource management in Ethiopian public hospitals. 0.78
35210995 Linking Molecular Mechanisms and Evolutionary Consequences of Resource Polyphenism. 0.78
35748099 Queries on medication use during pregnancy: characterisation of the Swiss Teratogen Information Service database. 0.78
35728097 Genome Sequence Resource of an Avirulent <i>Magnaporthe oryzae</i> Field Strain AM16. 0.78
35259005 Complete Genome Resource of a Commonly Used Laboratory Substrain of <i>Xanthomonas oryzae</i> pv. <i>oryzae</i> PXO99<sup>A</sup>. 0.78
35950759 A Computational Toolbox to Investigate the Metabolic Potential and Resource Allocation in Fission Yeast. 0.78
36006844 CPMCP: a database of Chinese patent medicine and compound prescription. 0.78
35055753 Achieving Human Resource Management Sustainability in Universities. 0.78
34954597 Integration of Regional Hospitalizations, Registry and Vital Statistics Data for Development of a Single Statewide Ischemic Stroke Database. 0.78
35701889 The development of negative emotional scenes of teachers database. 0.77
34671064 Updating the Chieti Affective Action Videos database with older adults. 0.77
34655133 Observed Antibody Space: A diverse database of cleaned, annotated, and translated unpaired and paired antibody sequences. 0.77
35581339 Network pharmacology combined with GEO database identifying the mechanisms and molecular targets of Polygoni Cuspidati Rhizoma on Peri-implants. 0.77
34918224 PDSTD - The Portsmouth Dynamic Spontaneous Tears Database. 0.77
35591924 TCMPG: an integrative database for traditional Chinese medicine plant genomes. 0.77
34773623 qPrimerDB: A Powerful and User-Friendly Database for qPCR Primer Design. 0.77
35849601 Modeling a session of subject-system interaction in a wireless communication infrastructure with a mixed resource. 0.77
34634807 VThunter: a database for single-cell screening of virus target cells in the animal kingdom. 0.77
35586258 Database of Amphibia distribution in West Siberia (Russia). 0.77
35752163 A database of pediatric drug effects to evaluate ontogenic mechanisms from child growth and development. 0.77
35924884 Expansion and contraction of resource allocation in sensory bottlenecks. 0.77
35710584 Complex ontology alignment for autonomous systems via the Compact Co-Evolutionary Brain Storm Optimization algorithm. 0.77
35654905 AnimalTraits - a curated animal trait database for body mass, metabolic rate and brain size. 0.77
34728623 A palaeoclimate proxy database for water security planning in Queensland Australia. 0.77
35638426 GpemDB: A Scalable Database Architecture with the Multi-omics Entity-relationship Model to Integrate Heterogeneous Big-data for Precise Crop Breeding. 0.77
35136916 Anc2vec: embedding gene ontology terms by preserving ancestors relationships. 0.77
34692956 Searchable database of frequent R-groups in medicinal chemistry and their preferred replacements. 0.77
34699529 The GH19 Engineering Database: Sequence diversity, substrate scope, and evolution in glycoside hydrolase family 19. 0.77
35672976 An Ontology-Based Semantic Model for Sharing and Reusability of Clinical Pathways Across Context (ShaRE-CP). 0.77
34598657 Genome Resource of a Hypervirulent Strain C9-3 of <i>Xanthomonas oryzae</i> pv. <i>oryzae</i> Causing Bacterial Blight of Rice. 0.77
35729167 Presenting the Compendium Isotoporum Medii Aevi, a Multi-Isotope Database for Medieval Europe. 0.77
34812642 Accelerating Molecular Design of Cage Energetic Materials with Zero Oxygen Balance through Large-Scale Database Search. 0.77
35644986 Wheat Panache: A pangenome graph database representing presence-absence variation across sixteen bread wheat genomes. 0.77
34718734 RPS: a comprehensive database of RNAs involved in liquid-liquid phase separation. 0.77
35536846 ThermoBase: A database of the phylogeny and physiology of thermophilic and hyperthermophilic organisms. 0.77
35833709 Normal Table of Xenopus development: a new graphical resource. 0.77
35791063 An indirect approach for reference intervals establishment of immunoglobulin A, G and M: the combination of laboratory database and statistics. 0.77
35447229 Expansion of the Cosmetics Europe skin sensitisation database with new substances and PPRA data. 0.77
35055368 ICBrainDB: An Integrated Database for Finding Associations between Genetic Factors and EEG Markers of Depressive Disorders. 0.77
34919569 Design and development of human resource management computer system for enterprise employees. 0.77
35019064 Notebook of experiences: a therapeutic resource in educational audiology. 0.77
35161938 A Resource-Efficient CNN-Based Method for Moving Vehicle Detection. 0.77
35168139 Adolescents' judgments about resource inequality involving group disparities. 0.77
34987836 Insight into skywave theory and breakthrough applications in resource exploration. 0.77
35957271 Radio Frequency Database Construction and Modulation Recognition in Wireless Sensor Networks. 0.77
35108542 Sex differences in developmental patterns of neocortical astroglia: A mouse translatome database. 0.77
35222847 ADDAGMA: A database for domestic animal gut microbiome atlas. 0.77
35284899 <i>Bulinus truncatus</i> transcriptome - a resource to enable molecular studies of snail and schistosome biology. 0.77
35181599 pSATdb: a database of mitochondrial common, polymorphic, and unique microsatellites. 0.77
34792166 CircleBase: an integrated resource and analysis platform for human eccDNAs. 0.77
35503204 MrParse: finding homologues in the PDB and the EBI AlphaFold database for molecular replacement and more. 0.77
35348640 HPVMD-C: a disease-based mutation database of human papillomavirus in China. 0.77
35669667 Research on Performance Optimization Algorithm of Resource and Environment Audit Based on Computer Technology. 0.77
34791421 ProteomicsDB: toward a FAIR open-source resource for life-science research. 0.77
35474383 KmerKeys: a web resource for searching indexed genome assemblies and variants. 0.77
35133852 The Highly Contiguous Genome Resource of <i>Trichoderma semiorbis</i> FJ059, a Biological Control Agent for Litchi Downy Blight. 0.77
34793499 Resource competition and technological diversity. 0.77
35080120 MCycDB: A curated database for comprehensively profiling methane cycling processes of environmental microbiomes. 0.77
35328546 Genome-Wide Survey and Development of the First Microsatellite Markers Database (<i>AnCorDB</i>) in <i>Anemone coronaria</i> L. 0.76
35968182 Unveiling the arcanum of formalin-fixed paraffin-embedded archival tissue blocks: A valuable resource for genomic DNA extraction. 0.76
35523906 PlantMWpIDB: a database for the molecular weight and isoelectric points of the plant proteomes. 0.76
35037203 CerealsDB: A Whistle-Stop Tour of an Open Access SNP Resource. 0.76
35395909 The First Complete Genome Resource of a <i>Ralstonia solanacearum</i> Phage UAM5 from Colombia. 0.76
35324455 Bone phenotypes in multiple endocrine neoplasia type 1: survey on the MEN1 Florentine database. 0.76
36015784 Resource Allocation in Multi-Carrier Multiplexed NOMA Cooperative System. 0.76
35084575 The Societal Readiness Thinking Tool: A Practical Resource for Maturing the Societal Readiness of Research Projects. 0.76
35966240 Construction of Hospital Human Resource Information Management System under the Background of Artificial Intelligence. 0.76
35042799 Yeast has evolved to minimize protein resource cost for synthesizing amino acids. 0.76
35581438 The taste & affect music database: Subjective rating norms for a new set of musical stimuli. 0.76
35318332 SkewDB, a comprehensive database of GC and 10 other skews for over 30,000 chromosomes and plasmids. 0.76
35087092 p3k14c, a synthetic global database of archaeological radiocarbon dates. 0.76
35361112 Development of a versatile resource for post-genomic research through consolidating and characterizing 1500 diverse wild and cultivated soybean genomes. 0.76
35161841 Food Recipe Ingredient Substitution Ontology Design Pattern. 0.76
35451455 Chromosome diversity in Dasypyrum villosum, an important genetic and trait resource for hexaploid wheat engineering. 0.76
35315878 A New Resource in CDC's Campaign to Reduce Maternal Deaths. 0.76
35498709 Ecology and Biodiversity Ontology Alignment for Smart Environment <i>via</i> Adaptive Compact Evolutionary Algorithm. 0.76
35486551 A Hybrid In Situ Approach for Cost Efficient Image Database Generation. 0.76
35219233 Characterization of degradation products of carrageenan by LC-QTOF/MS with a hypothetical database. 0.76
35820117 A Cytological Atlas of the Human Liver Proteome from PROTEOME<sup>SKY</sup>-LIVER<sup>Hu</sup> 2.0, a Publicly Available Database. 0.76
36081264 Clustering and optimising regional segregated resource allocation networks. 0.76
35104413 Community Data Mining Approach for Surface Complexation Database Development. 0.76
35259004 Genome Sequence Resource of <i>Colletotrichum horii</i>, an Important Pathogenic Fungus Threatening Persimmon Production. 0.76
35729468 Collection of Data on Adverse Events Related to Medicinal Products: A Survey Among Registries in the ENCePP Resources Database. 0.76
35606775 Genome of the parasitoid wasp Cotesia chilonis sheds light on amino acid resource exploitation. 0.76
34614159 CyanoOmicsDB: an integrated omics database for functional genomic analysis of cyanobacteria. 0.76
35148171 Genome Nexus: A Comprehensive Resource for the Annotation and Interpretation of Genomic Variants in Cancer. 0.76
35037202 Gramene: A Resource for Comparative Analysis of Plants Genomes and Pathways. 0.76
35918364 ExAgBov: A public database of annotated variations from hundreds of bovine whole-exome sequencing samples. 0.76
35395910 Genome Sequence Resource of <i>Sarocladium terricola</i> TR, an Endophytic Fungus as a Potential Biocontrol Agent Against <i>Meloidogyne incognita</i>. 0.76
34718713 mBodyMap: a curated database for microbes across human body and their associations with health and diseases. 0.76
34907447 Data Resource Profile: China Chronic Disease and Risk Factor Surveillance (CCDRFS). 0.76
34899507 Three-Way Interaction Effect Model: Moderating Effect of Resource Between Business Age and Host Performance. 0.76
34970421 Research on Resource Allocation and Optimization of Community Intelligent Sports Service for the Elderly Based on Group Intelligence. 0.76
35025997 LLPSDB v2.0: an updated database of proteins undergoing liquid-liquid phase separation in vitro. 0.76
34990065 Intersexual flower differences in an andromonoecious species: small pollen-rich staminate flowers under resource limitation. 0.76
34975376 Quantitative Electroencephalogram Standardization: A Sex- and Age-Differentiated Normative Database. 0.76
35365676 A biologging database of juvenile white sharks from the northeast Pacific. 0.76
35942141 Digital Construction of Vocal Music Teaching Resource Base Using Data Mining Technology. 0.76
35792893 Molecular Vibration Explorer: an Online Database and Toolbox for Surface-Enhanced Frequency Conversion and Infrared and Raman Spectroscopy. 0.76
35411390 Scaling up oligogenic diseases research with OLIDA: the Oligogenic Diseases Database. 0.76
34718710 The Natural Products Atlas 2.0: a database of microbially-derived natural products. 0.76
36071064 A resource for integrated genomic analysis of the human liver. 0.75
35441360 PLAViMoP database: A new continuously assessed and collaborative 3D point-light display dataset. 0.75
35962451 Identification of LARS as an essential gene for osteosarcoma proliferation through large-Scale CRISPR-Cas9 screening database and experimental verification. 0.75
36080856 Resource Scheduling for Multitarget Imaging in a Distributed Netted Radar System Based on Maximum Scheduling Benefits. 0.75
35629266 TMS Database Registry Consortium Research Project in Japan (TReC-J) for Future Personalized Psychiatry. 0.75
35367014 Is telehealth a valuable resource in reproductive endocrinology and infertility? 0.75
34828933 Bio Discarded from Waste to Resource. 0.75
36064849 Re-visiting the resource curse hypothesis in the MINT economies. 0.75
35674136 Comprehensive COMPARE database reduces allergenic risk of novel food proteins. 0.75
34986603 m5C-Atlas: a comprehensive database for decoding and annotating the 5-methylcytosine (m5C) epitranscriptome. 0.75
35842742 PlantPhoneDB: A manually curated pan-plant database of ligand-receptor pairs infers cell-cell communication. 0.75
35773612 Socioeconomic and resource efficiency impacts of digital public services. 0.75
35881922 The COMPAS Project: A Computational Database of Polycyclic Aromatic Systems. Phase 1: <i>cata</i>-Condensed Polybenzenoid Hydrocarbons. 0.75
34626758 Resource recovery from lignocellulosic wastes via biological technologies: Advancements and prospects. 0.75
36107664 Evidence of resource sharing in the psychological refractory period (PRP) paradigm. 0.75
36119373 RadicalSAM.org: A Resource to Interpret Sequence-Function Space and Discover New Radical SAM Enzyme Chemistry. 0.75
35396594 BPPRC database: a web-based tool to access and analyse bacterial pesticidal proteins. 0.75
35390008 Privacy-aware sharing and collaborative analysis of personal wellness data: Process model, domain ontology, software system and user trial. 0.75
34714959 A comprehensive platelet expression atlas (PEA) resource and platelet transcriptome landscape. 0.75
34914170 SoySNP618K array: A high-resolution single nucleotide polymorphism platform as a valuable genomic resource for soybean genetics and breeding. 0.75
35313236 Resource limitations in bimanual pointing. 0.75
35795538 Green Human Resource Management, Employee Work Values, and Enterprise Environmental Performance. 0.75
34604791 A Predictive Resource Allocation for Wireless Communications Systems. 0.75
35386393 Rich resource environment of fish farms facilitates phenotypic variation and virulence in an opportunistic fish pathogen. 0.75
34611300 HGNC nomenclature for fusion genes. 0.75
34782688 CyFi-MAP: an interactive pathway-based resource for cystic fibrosis. 0.75
34780411 Secure transmission of W-band millimeter-wave based on CNN and dynamic resource allocation. 0.75
35298327 A digital health ecosystem ontology from the perspective of Australian consumers: a mixed-method literature analysis. 0.75
35694605 Dynamic Resource Allocation and Forecast of Snow Tourism Demand Based on Multiobjective Optimization Algorithm. 0.75
35607471 Resource Allocation Strategy of the Educational Resource Base for MEC Multiserver Heuristic Joint Task. 0.75
34719556 Constructing a developmental and reproductive toxicity database of chemicals (DART NIHS DB) for integrated approaches to testing and assessment. 0.75
35525881 Expanding the Database of Signal-Anchor-Release Domain Endolysins Through Metagenomics. 0.75
35957373 Resource Mapping Allocation Scheme in 6G Satellite Twin Network. 0.75
35936507 The effect of information-driven resource allocation on the propagation of epidemic with incubation period. 0.75
35936267 Artificial intelligence-based organizational human resource management and operation system. 0.75
35061412 Undecidability in Resource Theory: Can You Tell Resource Theories Apart? 0.75
34957176 Development of a Vitamin K Database for Commercially Available Food in Australia. 0.75
34718740 RNAPhaSep: a resource of RNAs undergoing phase separation. 0.75
34664671 The current state of SubtiWiki, the database for the model organism Bacillus subtilis. 0.75
34964957 [Standards for the interpretation of constitutional copy number gain: Recommendation from the American College of Medical Genetics and Genomics (ACMG) and Clinical Genome Resource (ClinGen)]. 0.75
34655069 Results of the Diaphragmatic Plication Database: 10 Years' Experience. 0.75
35522174 CHDgene: A Curated Database for Congenital Heart Disease Genes. 0.75
35928410 Research on the Coupling Mechanism of the Trade Union and Human Resource Management in China. 0.75
34979504 Lessons Learnt from a Decade of the Irish Hip Fracture Database. 0.75
35461097 CCDB: A database for exploring inter-chemical correlations in metabolomics and exposomics datasets. 0.75
35214464 Resource Allocation in Uplink NOMA-IoT Based UAV for URLLC Applications. 0.75
34720783 TuLeD (Tupían lexical database): introducing a database of a South American language family. 0.75
35734284 Update of the <i>Xylella</i> spp. host plant database - systematic literature search up to 31 December 2021. 0.75
34627658 An integrated approach to create a spatial database of parks for urban health research. 0.75
35919245 Trade and Resource Sustainability with Asset Markets. 0.75
35634057 Deep Neural Network Model Construction for Digital Human Resource Management with Human-Job Matching. 0.75
35141219 LncPep: A Resource of Translational Evidences for lncRNAs. 0.75
34957778 Amiodarone in ventricular arrhythmias: still a valuable resource? 0.75
34953987 Community scale in-situ rapid biological reduction and resource recovery of food waste. 0.75
35713859 Finding Gene Associations by Text Mining and Annotating it with Gene Ontology. 0.74
34990848 Resource-allocation constraint governs structure and function of microbial communities in metabolic modeling. 0.74
35490970 Database of 25 validated coil models for electric field simulations for TMS. 0.74
35237121 Microstate Detection in Naturalistic Electroencephalography Data: A Systematic Comparison of Topographical Clustering Strategies on an Emotional Database. 0.74
35145151 Beyond Dunbar circles: a continuous description of social relationships and resource allocation. 0.74
35175626 Plastics degradation by hydrolytic enzymes: The plastics-active enzymes database-PAZy. 0.74
35851372 A surgeon's journey into the world of IT: the medwebtools.com database. 0.74
34716354 A curated diverse molecular database of blood-brain barrier permeability with chemical descriptors. 0.74
35964149 Identification of missing hierarchical relations in the vaccine ontology using acquired term pairs. 0.74
35034331 Resource frontiers and agglomeration economies: The varied logics of transnational land-based investing in Southern and Eastern Africa. 0.74
35193690 A multipurpose TNM stage ontology for cancer registries. 0.74
35234182 Mix and Mesh: An Electronic Database of FPMRS Mesh Products Through 2020. 0.74
35263799 Design and Evaluation of a Postpartum Depression Ontology. 0.74
35064355 Development, Conservation, Empowerment: The Trilemma of Community-Based Natural Resource Management in Namibia. 0.74
34879732 FUSARIUM-ID v.3.0: An Updated, Downloadable Resource for <i>Fusarium</i> Species Identification. 0.74
35228260 Growth-rate-dependent and nutrient-specific gene expression resource allocation in fission yeast. 0.74
35073313 McComedy: A user-friendly tool for next-generation individual-based modeling of microbial consumer-resource systems. 0.74
35310579 Virtual Machine Resource Allocation Optimization in Cloud Computing Based on Multiobjective Genetic Algorithm. 0.74
35322028 Multi-scanner and multi-modal lumbar vertebral body and intervertebral disc segmentation database. 0.74
35235118 The potency of eco-innovation, natural resource and financial development on ecological footprint: a quantile-ARDL-based evidence from China. 0.74
34698475 The NLN Archives Collection: A Vital Resource for Scholars. 0.74
35892800 Development of a Canadian Food Composition Database of Gluten-Free Products. 0.74
34698276 MicroSalmon: A Comprehensive, Searchable Resource of Predicted MicroRNA Targets and 3'UTR Cis-Regulatory Elements in the Full-Length Sequenced Atlantic Salmon Transcriptome. 0.74
34858102 Partnership development of the COVID-19 Front Door: a best evidence resource. 0.74
34820772 Ventilation/perfusion SPECT: One more promising resource to fight the medical Hydra. 0.74
34743696 Phenotype-tissue expression and exploration (PTEE) resource facilitates the choice of tissue for RNA-seq-based clinical genetics studies. 0.74
35643087 HTPdb and HTPtools: Exploiting maize haplotype-tag polymorphisms for germplasm resource analyses and genomics-informed breeding. 0.74
35708349 A PDX1 cistrome and single-cell transcriptome resource of the developing pancreas. 0.74
35493710 The chloroplast genome characteristics, comparative genomics and gene resource mining of <i>Celtis sinensis</i> (Persoon, 1805). 0.74
35637778 Non-farm employment, natural resource extraction, and poverty: evidence from household data for rural Vietnam. 0.74
35720786 Fascial Nomenclature: Update 2022. 0.74
35617486 Draft Genome Sequence Resource of AldY-WA1, a Phytoplasma Strain Associated with Alder Yellows of <i>Alnus rubra</i> in Washington, U.S.A. 0.74
35498991 <i>Adenanthera pavonina</i>, a potential plant-based protein resource: Seed protein composition and immunohistochemical localization of trypsin inhibitors. 0.74
35035582 Update of the <i>Xylella</i> spp. host plant database - systematic literature search up to 30 June 2021. 0.74
35005150 A database and framework for carbon ore resources and associated supply chain data. 0.74
34992565 Evolved Features of Artistic Motivation: Analyzing a Brazilian Database Spanning Three Decades. 0.74
35118311 Establishment of multi-center database on thymic epithelial tumors (TETs) and current situation in Korea. 0.74
35033323 Development of the first DNA database and identification portal for identification of Unidentified bodies in India - UMID. 0.74
35791312 Family responses to resource scarcity. 0.74
35562925 The Thousand Polish Genomes-A Database of Polish Variant Allele Frequencies. 0.74
35885143 Optimized Selection of Water Resource Allocation Schemes Based on Improved Connection Entropy in Beijing's Southern Plain. 0.74
35761793 International Spinal Cord Injury Biobank: A Biorepository and Resource for Translational Research. 0.74
36065374 Intelligent Optimization Method of Resource Recommendation Service of Mobile Library Based on Digital Twin Technology. 0.74
34788791 PheneBank: a literature-based database of phenotypes. 0.74
34926340 Developing a Reference Database for Typical Body and Organ Growth of the Artificially Reared Pig as a Biomedical Research Model. 0.74
35581023 A resource-aware control approach to vehicle platoons under false data injection attacks. 0.74
34956316 A Data Report on the Curation and Development of a Database of Genes for Acute Respiratory Distress Syndrome. 0.74
34795090 A Methodology for an Auto-Generated and Auto-Maintained HL7 FHIR OWL Ontology for Health Data Management. 0.74
35550120 Digital science platform: an interactive web application and database of osteological material for anatomy education. 0.74
35951375 Procedure dependence in resource allocations: How focusing on resource or target affects variety-seeking. 0.74
35685148 System Resource Allocation and Rural Industry Revitalization Based on Max-Min Algorithm. 0.73
36035821 Data Sharing Method of College Dance Teaching Resource Database Based on PSO Algorithm. 0.73
35889873 Chinese Food Image Database for Eating and Appetite Studies. 0.73
35988398 Commitment of European SMEs to resource efficiency actions to achieve sustainability transition. A feasible reality or an elusive goal? 0.73
35986836 EBRAINS Live Papers - Interactive Resource Sheets for Computational Studies in Neuroscience. 0.73
35475977 Mechanisms of Danggui Buxue Tang on Hematopoiesis via Multiple Targets and Multiple Components: Metabonomics Combined with Database Mining Technology. 0.73
35599862 The Interaction Between Nitrogen Supply and Light Quality Modulates Plant Growth and Resource Allocation. 0.73
35731221 A chromosome-level, fully phased genome assembly of the oat crown rust fungus Puccinia coronata f. sp. avenae: a resource to enable comparative genomics in the cereal rusts. 0.73
34723513 Proteomic Database Search Engine for Two-Dimensional Partial Covariance Mass Spectrometry. 0.73
35036538 Sim-DRS: a similarity-based dynamic resource scheduling algorithm for microservice-based web systems. 0.73
34827044 The application of the retraction watch database in eye research-based studies. 0.73
35590488 Job crafting and employee life satisfaction: A resource-gain-development perspective. 0.73
34640192 Characterization of Wet Olive Pomace Waste as Bio Based Resource for Leather Tanning. 0.73
35794151 The Australian Shark-Incident Database for quantifying temporal and spatial patterns of shark-human conflict. 0.73
34995313 A 3-D groundwater isoscape of the contiguous USA for forensic and water resource science. 0.73
34641400 MetaClass, a Comprehensive Classification System for Predicting the Occurrence of Metabolic Reactions Based on the MetaQSAR Database. 0.73
35075448 Institutional quality and resource-based economic sustainability: the mediation effects of resource governance. 0.73
35948504 Layperson Minimal-Resource Smartphone Retinal Photography. 0.73
35089946 Design and interactive performance of human resource management system based on artificial intelligence. 0.73
34853240 Anatomy and nomenclature of tree shrew lymphoid tissues. 0.73
34733325 Design and Simulation of Human Resource Allocation Model Based on Double-Cycle Neural Network. 0.73
36030176 TranZap: A Transgender Resource for Identifying Gender-Affirming Providers. 0.73
35932159 A conceptual framework to predict social information use based on food ephemerality and individual resource requirements. 0.73
35515997 High-resolution hydrodynamics and TS structure database of the Brazilian continental shelf and adjacent waters. 0.73
34960455 Multi-Cloud Resource Management Techniques for Cyber-Physical Systems. 0.73
35011233 Aurones: A Golden Resource for Active Compounds. 0.73
35498549 The International Trichinella Reference Centre database. Report on thirty-three years of activity and future perspectives. 0.73
34616216 A 30-year update of the climbers and vascular epiphytes inventory of the Cerro Ñielol Natural Monument (La Araucanía, Chile): a database. 0.73
34978816 EXCESP: A Structure-Based Online Database for Extracellular Interactome of Cell Surface Proteins in Humans. 0.73
35481685 Nomenclature of Genetic Movement Disorders: Recommendations of the International Parkinson and Movement Disorder Society Task Force - An Update. 0.73
36006693 Assessing Social Media Data as a Resource for Firearm Research: Analysis of Tweets Pertaining to Firearm Deaths. 0.73
36039856 Automated referral to community paramedicine during 9-1-1 fall calls for resource activation. 0.73
36008415 The NIMH intramural healthy volunteer dataset: A comprehensive MEG, MRI, and behavioral resource. 0.73
34703474 Pericardiectomy for constrictive pericarditis in a resource constraint setting. 0.73
35853904 A global, historical database of tuna, billfish, and saury larval distributions. 0.73
34791106 DCMP: database of cancer mutant protein domains. 0.73
35491949 High-Quality Complete Genome Resource of <i>Pectobacterium parvum</i> Isolate FN20211 Causing Aerial Stem Rot of Potato. 0.73
34717338 Path-integral solution of MacArthur's resource-competition model for large ecosystems with random species-resources couplings. 0.73
35849929 Valorizing (cleaned) sulfidic mine waste as a resource for construction materials. 0.73
35136085 Efficient compressed database of equilibrated configurations of ring-linear polymer blends for MD simulations. 0.73
34795267 Complementary resource preferences spontaneously emerge in diauxic microbial communities. 0.73
35182144 Data Resource Profile: The Integrated Primary Care Information (IPCI) database, The Netherlands. 0.73
35614098 Seeking patterns of antibiotic resistance in ATLAS, an open, raw MIC database with patient metadata. 0.73
35591573 Automated Development of an Accurate Diffusion Database in Fcc AlCoCrFeNi High-Entropy Alloys from a Big Dataset of Composition Profiles. 0.73
34742708 Bioelectrochemical systems-based metal recovery: Resource, conservation and recycling of metallic industrial effluents. 0.73
34780149 Predicting Composition of Genetic Circuits with Resource Competition: Demand and Sensitivity. 0.73
34747466 Pol3Base: a resource for decoding the interactome, expression, evolution, epitranscriptome and disease variations of Pol III-transcribed ncRNAs. 0.73
35298308 Dental Service and Resource Needs during COVID-19 among Underserved Populations. 0.73
35353862 Research on extremely short construction period of engineering project based on labor balance under resource tolerance. 0.73
35471885 PhenoBERT: a combined deep learning method for automated recognition of human phenotype ontology. 0.73
35398971 Image collection and annotation platforms to establish a multi-source database of oral lesions. 0.73
35895326 High-Quality Genome Sequence Resource of <i>Thielaviopsis paradoxa</i> Strain X-3314, Causing Coconut Stem Bleeding. 0.73
34888572 Algae-Based Biorefinery as a Sustainable Renewable Resource. 0.73
35561159 MitoVisualize: a resource for analysis of variants in human mitochondrial RNAs and DNA. 0.73
35412583 MitoVisualize: A resource for analysis of variants in human mitochondrial RNAs and DNA. 0.73
34783229 Glioblastoma gene network reconstruction and ontology analysis by online bioinformatics tools. 0.73
35493528 dbPepNeo2.0: A Database for Human Tumor Neoantigen Peptides From Mass Spectrometry and TCR Recognition. 0.73
35551216 QUaternary fault strain INdicators database - QUIN 1.0 - first release from the Apennines of central Italy. 0.73
34858137 A Standardized Brain Molecular Atlas: A Resource for Systems Modeling and Simulation. 0.73
35535196 Design of Rural Human Resource Management Platform Integrating IoT and Cloud Computing. 0.73
35286126 Complete Genome Resource of <i>Xanthomonas oryzae</i> pv. <i>oryzicola</i> GX01 Isolated in South China. 0.73
35357217 Genome Resource of <i>Cladosporium cucumerinum</i> Strain CCNX2 Causing Cucumber Scab in China. 0.73
36028515 RSDB: A rare skin disease database to link drugs with potential drug targets for rare skin diseases. 0.73
34614214 Coordinated resource allocation to plant growth-defense tradeoffs. 0.72
35698129 Resource-aware whole-cell model of division of labour in a microbial consortium for complex-substrate degradation. 0.72
35651521 Comparison of algorithms for identifying people with HIV from electronic medical records in a large, multi-site database. 0.72
34773509 Identification of an Elite Core Panel as a Key Breeding Resource to Accelerate the Rate of Genetic Improvement for Irrigated Rice. 0.72
35001824 Prehospital Mechanical Ventilation: An NAEMSP Position Statement and Resource Document. 0.72
34783225 Tartary buckwheat database (TBD): an integrative platform for gene analysis of and biological information on Tartary buckwheat. 0.72
34682563 Concentrations of Salivary Cortisol in Victims of Intimate Partner Violence According to the CIRCORT Database. 0.72
35814592 Innovative Mode of Human Resource Management of University Teachers Based on Intelligent Big Data Analysis. 0.72
35011609 KANPHOS: A Database of Kinase-Associated Neural Protein Phosphorylation in the Brain. 0.72
35777406 A new initiative to track HIV resource allocation. 0.72
36016573 AMTDB: A comprehensive database of autophagic modulators for anti-tumor drug discovery. 0.72
34906454 The Clinical Genome Resource (ClinGen) Familial Hypercholesterolemia Variant Curation Expert Panel consensus guidelines for LDLR variant classification. 0.72
34868169 Chromosome-Scale Reference Genome of <i>Amphicarpaea edgeworthii</i>: A New Resource for Amphicarpic Plants Research and Complex Flowering Pattern. 0.72
35377469 Chemotaxonomic investigation of plant terpenoids with an established database (TeroMOL). 0.72
34621526 Bacterial nomenclature in the era of genomics. 0.72
34612497 Variations in Nomenclature of Clinical Variants between Annotation Tools. 0.72
35794335 The impact of digital finance on green innovation: resource effect and information effect. 0.72
34751373 Development of the Wheat Practical Haplotype Graph database as a resource for genotyping data storage and genotype imputation. 0.72
34955197 Urbanization reduces resource use efficiency of phytoplankton community by altering the environment and decreasing biodiversity. 0.72
34751403 ViroidDB: a database of viroids and viroid-like circular RNAs. 0.72
35391014 The Wild Silkmoths (Lepidoptera: Bombycoidea: Saturniidae) of Colombia: a database of occurrence points and taxonomic checklist. 0.72
35042854 Landscape Dynamics (landDX) an open-access spatial-temporal database for the Kenya-Tanzania borderlands. 0.72
34805508 Intelligent scaling for 6G IoE services for resource provisioning. 0.72
35794864 Resource for FRET-Based Biosensor Optimization. 0.72
34735940 A reference database of forensic autosomal and gonosomal STR markers in the Tigray population of Ethiopia. 0.72
34977834 Biomass: Renewable carbon resource for chemical and energy industry. 0.72
34735112 Carboxypeptidase Y Assisted Disulfide-Bond Identification with Linearized Database Search. 0.72
36110878 Seascapes and foraging success: Movement and resource discovery by a benthic marine herbivore. 0.72
35099622 Environmental identification of arbuscular mycorrhizal fungi using the LSU rDNA gene region: an expanded database and improved pipeline. 0.72
35242947 Monthly anomaly database of atmospheric and oceanic parameters in the tropical Atlantic ocean. 0.72
35222846 SuPepMem: A database of innate immune system peptides and their cell membrane interactions. 0.72
34593825 Chinese environmentally extended input-output database for 2017 and 2018. 0.72
35513196 Microplastic bioaccumulation in estuary-caught fishery resource. 0.72
35286273 Distributed Differential Evolution With Adaptive Resource Allocation. 0.72
35151006 Improving data augmentation for low resource speech-to-text translation with diverse paraphrasing. 0.72
36099158 Correction to: The Brassicaceae genome resource (TBGR): A comprehensive genome platform for Brassicaceae plants. 0.72
35548100 Construction of Game Model between Carbon Emission Minimization and Energy and Resource Economy Maximization Based on Deep Neural Network. 0.72
35466420 Finding love in a hopeless place: A global database of misdirected amplexus in anurans. 0.72
35214374 Location-Based LTE-M Uplink Power Control and Radio Resource Scheduling. 0.72
35077943 Neuroscience-based nomenclature of psychotropics: Progress report. 0.72
36059922 A multimodal clinical data resource for personalized risk assessment of sudden unexpected death in epilepsy. 0.72
36139108 Antibacterial and Antifungal Sesquiterpenoids: Chemistry, Resource, and Activity. 0.72
35101875 COVID-19: severe resource crisis in hospitals. 0.72
34735279 High-Quality Genome Assembly and Annotation Resource of <i>Botryosphaeria dothidea</i> Strain BDLA16-7, Causing Trunk Canker Disease on Chinese Hickory. 0.72
35162833 What Makes Employees Green Advocates? Exploring the Effects of Green Human Resource Management. 0.72
35978590 Management Cost Management and Resource Optimization of Construction Enterprises Based on Ecological Environment Constraints. 0.72
35336569 Joint Resource Allocation in Secure OFDM Two-Way Untrusted Relay System. 0.72
35336575 Integrated Resource Management for Fog Networks. 0.72
34920474 Ontology-Based Natural Language Processing of Social Media Data in the Assessment of Health Information Sought During Pregnancy. 0.72
35321614 Immunohistochemical Characterization of Proliferative Lesions in the Thymus of Aging CD-1 Mice From Two Studies on the RITA Database, With Special Reference to the Perivascular Space. 0.72
35594415 R-BIND 2.0: An Updated Database of Bioactive RNA-Targeting Small Molecules and Associated RNA Secondary Structures. 0.72
35696079 Analysis of Posttranslational Modifications in Arabidopsis Proteins and Metabolic Pathways Using the FAT-PTM Database. 0.72
34663204 Development of the International Classification of Diseases Ontology (ICDO) and its application for COVID-19 diagnostic data analysis. 0.72
36083071 New flexible working resource launched. 0.72
35454168 IntroSpect: Motif-Guided Immunopeptidome Database Building Tool to Improve the Sensitivity of HLA I Binding Peptide Identification by Mass Spectrometry. 0.72
35784051 Mycophagous beetle females do not behave competitively during intrasexual interactions in presence of a fungal resource. 0.71
35259957 Dynamic resource allocation for controlling pathogen spread on a large metapopulation network. 0.71
35262377 High-Quality Genome Resource of the Phytopathogenic Fungus <i>Sclerotinia minor</i> LC41, the Causal Agent of Sclerotinia Blight on Lettuce in China. 0.71
34633234 High-Quality Genome Resource of Mango Bacterial Black Spot Pathogen <i>Xanthomonas citri</i> pv. <i>mangiferaeindicae</i> GXG07 Isolated from Guangxi, China. 0.71
35788670 Examination of Potential Industry Conflicts of Interest and Disclosures by Contributors to Online Medical Resource Databases. 0.71
35625412 agReg-SNPdb-Plants: A Database of Regulatory SNPs for Agricultural Plant Species. 0.71
36000855 Cryptococcus neoformans Database in Synthetic Biology Open Language. 0.71
35587493 Establishing and using a genetic database for resolving identification of fish species in the Sea of Galilee, Israel. 0.71
36120689 A Method for Evaluating the Green Economic Efficiency of Resource-Based Cities Based on Neural Network Improved DEA Model. 0.71
35419026 InfersentPPI: Prediction of Protein-Protein Interaction Using Protein Sentence Embedding With Gene Ontology Information. 0.71
35306701 Chromosome-level genome of Camellia lanceoleosa provides a valuable resource for understanding genome evolution and self-incompatibility. 0.71
34888558 Enabling Reuse in Extended Producer Responsibility Schemes for White Goods: Legal and Organisational Conditions for Connecting Resource Flows and Actors. 0.71
35836997 The Shared Core Resource as a Partner in Innovative Scientific Research: Illustration from an Academic Microscopy Imaging Center. 0.71
35796359 Private versus public: A dual model for resource-constrained conflict representations. 0.71
35027708 Ophthalmic Trauma Malpractice in the Ophthalmic Mutual Insurance Company Database. 0.71
35807675 Foliar Functional Traits of Resource Island-Forming Nurse Tree Species from a Semi-Arid Ecosystem of La Guajira, Colombia. 0.71
34787950 Considerations for user consultation in a flow cytometry shared resource laboratory. 0.71
35459273 Fast environmental sound classification based on resource adaptive convolutional neural network. 0.71
35418183 The PeptideAtlas of a widely cultivated fish Labeo rohita: A resource for the Aquaculture Community. 0.71
35360631 Trade-Off vs. Common Factor-Differentiating Resource-Based Explanations From Their Alternative. 0.71
34886276 Security Providing Leadership: A Job Resource to Prevent Employees' Burnout. 0.71
35049880 Mussel Shells, a Valuable Calcium Resource for the Pharmaceutical Industry. 0.71
35262364 Creating a Searchable Chromatographic Database with the NIST Mass Spectral Search Program. 0.71
34838100 The Aliment to Bodily Condition knowledgebase (ABCkb): a database connecting plants and human health. 0.71
34895933 Reconstructing the transcription regulatory network to optimize resource allocation for robust biosynthesis. 0.71
34972320 "Erratum: ""Extreme synchronization events in a Kuramoto model: The interplay between resource constraints and explosive transitions"" [Chaos 31, 063103 (2021)]." 0.71
35120166 Crowding Out Effects of Alcohol Consumption Expenditure on Household Resource Allocation in Malawi. 0.71
35306140 LTM-TCM: A comprehensive database for the linking of Traditional Chinese Medicine with modern medicine at molecular and phenotypic levels. 0.71
35650262 Flexible protein database based on amino acid k-mers. 0.71
35001825 Prehospital Noninvasive Ventilation: An NAEMSP Position Statement and Resource Document. 0.71
35001826 Prehospital Manual Ventilation: An NAEMSP Position Statement and Resource Document. 0.71
35261052 Functional trait database for Nova Scotian coastal barren, green roof, and ruderal flora. 0.71
34956265 Chromosome-Level Genome Assembly and HazelOmics Database Construction Provides Insights Into Unsaturated Fatty Acid Synthesis and Cold Resistance in Hazelnut (<i>Corylus heterophylla</i>). 0.71
35323332 Sequential Use of Carfilzomib and Pomalidomide in Relapsed Multiple Myeloma: A Report from the Canadian Myeloma Research Group (CMRG) Database. 0.71
35642429 Unicellular-multicellular evolutionary branching driven by resource limitations. 0.71
35682314 "The Effects of Broadband Infrastructure on Carbon Emission Efficiency of Resource-Based Cities in China: A Quasi-Natural Experiment from the ""Broadband China"" Pilot Policy." 0.71
35662423 The Chauvet Workgroup: A Resource for the Psychosocial Aspects of Reconstructive Transplantation. 0.71
35052312 An App about Healthy Habits as an Educational Resource during the Pandemic. 0.71
35148630 Resource use within a multidisciplinary foot team clinic. 0.71
35844834 ROMA: A Database of Rock Reflectance Spectra for Martian In Situ Exploration. 0.71
34890643 Update and nomenclature proposal for mammalian lysophospholipid acyltransferases, which create membrane phospholipid diversity. 0.71
34986601 TF-Marker: a comprehensive manually curated database for transcription factors and related markers in specific cell and tissue types in human. 0.71
35959021 Opponent or allied? An European analysis of the union presence and human resource practices. 0.71
35923402 Corrigendum: Genetic microbial source tracking support QMRA modeling for a riverine wetland drinking water resource. 0.71
35169150 The Digital Brain Tumour Atlas, an open histopathology resource. 0.71
36065072 Breaking the rules: decision-making under absolute resource constraints. 0.71
35591216 Resource Scheduling and Energy Consumption Optimization Based on Lyapunov Optimization in Fog Computing. 0.71
34674164 Period Estimation and Rhythm Detection in Timeseries Data Using BioDare2, the Free, Online, Community Resource. 0.71
35380657 MOET: a web-based gene set enrichment tool at the Rat Genome Database for multiontology and multispecies analyses. 0.71
35156141 In silico screening of potential β-secretase (BACE1) inhibitors from VIETHERB database. 0.7
34846641 HODD: A Manually Curated Database of Human Ophthalmic Diseases with Symptom Characteristics and Genetic Variants Towards Facilitating Quick and Definite Diagnosis. 0.7
34907337 Correction to: Recommendations for future extensions to the HGNC gene fusion nomenclature. 0.7
35344994 Updating Normal Organ Weights Using a Large Current Sample Database. 0.7
35504897 Auto-generated database of semiconductor band gaps using ChemDataExtractor. 0.7
35438150 PltDB: a blood platelets-based gene expression database for disease investigation. 0.7
35551103 Waiting for Multi-Stakeholders'Consensus Position Statement on New Nonalcoholic Fatty Liver Disease Nomenclature. 0.7
35242021 The Brain Observatory Storage Service and Database (BossDB): A Cloud-Native Approach for Petascale Neuroscience Discovery. 0.7
35504964 A database of refractive indices and dielectric constants auto-generated using ChemDataExtractor. 0.7
35533012 BatteryBERT: A Pretrained Language Model for Battery Database Enhancement. 0.7
34974849 A Normative Brain MRI Database of Neurotypical Participants from 5 to 90 Years of Age. 0.7
35577922 Online circular contrast perimetry via a web-application: optimising parameters and establishing a normative database. 0.7
35387734 [The research progress on the registration database of out-of-hospital cardiac arrest]. 0.7
35478717 Genome-wide diversity of Zika virus: Exploring spatio-temporal dynamics to guide a new nomenclature proposal. 0.7
35218297 Plant Public RNA-seq Database: a comprehensive online database for expression analysis of ~45‚Äâ000 plant public RNA-Seq libraries. 0.7
34594533 Generalist bird exhibits site-dependent resource selection. 0.7
34755865 The evolutionarily conserved kinase SnRK1 orchestrates resource mobilization during Arabidopsis seedling establishment. 0.7
34778513 Big social data provenance framework for Zero-Information Loss Key-Value Pair (KVP) Database. 0.7
35939187 Stimulating environmental performance via green human resource management, green transformational leadership, and green innovation: a mediation-moderation model. 0.7
35958268 Critical success factor based resource allocation in ERP implementation: A nonlinear programming model. 0.7
35964274 Characterizing Long Transients in Consumer-Resource Systems With Group Defense and Discrete Reproductive Pulses. 0.7
35525000 An infinite life cycle assessment model to re-evaluate resource efficiency and environmental impacts of circular economy systems. 0.7
35507445 Diauxic lags explain unexpected coexistence in multi-resource environments. 0.7
36037191 Does digital inclusive finance promote industrial transformation? New evidence from 115 resource-based cities in China. 0.7
35673177 Annotating Free-Texts in EHRs Towards a Reusable and Machine-Actionable Health Data Resource. 0.7
36049903 Optimizing protection resource allocation for traffic-driven epidemic spreading. 0.7
36053351 The morphological allometry of four closely related and coexisting insect species reveals adaptation to the mean and variability of the resource size. 0.7
34912325 Editorial: Microbial Biominerals: Toward New Functions and Resource Recovery. 0.7
34903447 Diagnosis is a probabilistic estimate of disease. A dynamic approach to diminish resource overuse. 0.7
36103488 Retraction: Phenotypic characterization of exotic tomato germplasm: An excellent breeding resource. 0.7
34756113 Tissue Cryopreservation and Cryobanking: Establishment of a Cryogenic Resource for Coral Reefs. 0.7
35483467 Hydrogen-oxidizing bacteria and their applications in resource recovery and pollutant removal. 0.7
35168887 "Correspondence on ""Screening for autosomal recessive and X-linked conditions during pregnancy and preconception: a practice resource of the American College of Medical Genetics and Genomics (ACMG)"" by Gregg et al." 0.7
34880358 Ectomycorrhizal fungus supports endogenous rhythmic growth and corresponding resource allocation in oak during various below- and aboveground biotic interactions. 0.7
35412647 Disturbance-mediated invasions are dependent on community resource abundance. 0.7
34823464 Automatic consistency assurance for literature-based gene ontology annotation. 0.7
35957172 Resource Allocation and Sharing Methodologies When Reconfigurable Intelligent Surfaces Meet Multiple Base Stations. 0.7
35756428 Automatic Identification of MALDI-TOF MS Database Using Classical <i>Bordetella</i> Species Isolates. 0.7
35696018 Building the Chordata Olfactory Receptor Database using more than 400,000 receptors annotated by Genome2OR. 0.7
35930651 New insight into the production improvement and resource generation of chaetoglobosin A in Chaetomium globosum. 0.7
35676946 Big Data Technology Oriented to Wetland Resource Ecosystem Value Evaluation. 0.7
35090020 The INDEPTH (Impact of Nuclear Domains on Gene Expression and Plant Traits) Academy: a community resource for plant science. 0.7
35688974 Does industrial intelligence improve resource misallocation? An empirical test based on China. 0.7
35094930 "Correspondence on ""Screening for autosomal recessive and X-linked conditions during pregnancy and preconception: A practice resource of the American College of Medical Genetics and Genomics (ACMG)"" by Gregg et al." 0.7
35726909 A new resource for human coronary vessel development. 0.7
35066867 Resource exploitation efficiency collapses the home range of an apex predator. 0.7
35790632 Recent trends of green human resource management: Text mining and network analysis. 0.7
35799388 [Kyushu Promotion Plan for the Platform of Human Resource Development for Cancer]. 0.7
35033304 Breast Density Knowledge and Awareness Among Latinas in a Low-Resource Setting. 0.7
35631903 Recycling and Resource Recovery from Polymers. 0.7
35615199 The Influence of System Dynamics Resource Sharing on Collaborative Manufacturing Efficiency-Based on the Multiagent System and System Dynamics Method. 0.7
35600676 Resource competition explains rare cannibalism in the wild in livebearing fishes. 0.7
35121663 Transmission potential of human schistosomes can be driven by resource competition among snail intermediate hosts. 0.7
35001830 Prehospital Supraglottic Airways: An NAEMSP Position Statement and Resource Document. 0.7
35125620 Marine resource recovery in Southern Thailand during COVID-19 and policy recommendations. 0.7
35933497 Rituximab and Pyoderma Gangrenosum: An Investigation of Disproportionality Using a Systems Biology-Informed Approach in the FAERS Database. 0.7
35907849 PO2RDF: representation of real-world data for precision oncology using resource description framework. 0.7
35701453 Environmental risks to humans, the first database of valence and arousal ratings for images of natural hazards. 0.7
35494268 Social Media in Hip Arthroscopy Is an Underused Resource That Enhances Physician Online Reputation. 0.7
35413796 Semantic clustering analysis of E3-ubiquitin ligases in gastrointestinal tract defines genes ontology clusters with tissue expression patterns. 0.7
35967902 Iodine in Foods and Dietary Supplements: A Collaborative Database Developed by NIH, FDA and USDA. 0.7
35668110 Implementation of a MS/MS database for isoquinoline alkaloids and other annonaceous metabolites. 0.7
34723319 The PRIDE database resources in 2022: a hub for mass spectrometry-based proteomics evidences. 0.7
35656002 PVBase: A MALDI-TOF MS Database for Fast Identification and Characterization of Potentially Pathogenic <i>Vibrio</i> Species From Multiple Regions of China. 0.7
35390651 An improved method of using two-dimensional model to evaluate the carrying capacity of regional water resource in Inner Mongolia of China. 0.7
35381376 ARBRE: Computational resource to predict pathways towards industrially important aromatic compounds. 0.7
35278278 What a few hairs can tell us about the resource use of giant armadillos. 0.7
34634810 SignaLink3: a multi-layered resource to uncover tissue-specific signaling networks. 0.7
35631348 Improved Database Filtering Technology Enables More Efficient Ab Initio Design of Potent Peptides against Ebola Viruses. 0.7
34606466 Tufts Dental Database: A Multimodal Panoramic X-Ray Dataset for Benchmarking Diagnostic Systems. 0.7
35222961 Effects of soil resource availability on patterns of plant functional traits across spatial scales. 0.7
34657177 Hotter droughts alter resource allocation to chemical defenses in piñon pine. 0.7
35352123 CarboGrove: a resource of glycan-binding specificities through analyzed glycan-array datasets from all platforms. 0.7
35235313 Marine Products As a Promising Resource of Bioactive Peptides: Update of Extraction Strategies and Their Physiological Regulatory Effects. 0.7
35560102 CAS(ME)<sup>3</sup>: A Third Generation Facial Spontaneous Micro-Expression Database with Depth Information and High Ecological Validity. 0.69
35362298 Evolving competencies to align electronic medical records - a dynamic resource-based perspective on hospitals' co-evolutionary information systems alignment capability. 0.69
35219700 Attentional resource allocation among individuals with different fluid intelligence: The integrated control hypothesis and its evidence from pupillometry. 0.69
35756250 Dietary Fiber and WHO Food Categories Extension for the Food-Pics_Extended Database. 0.69
35580284 Modality Changes in Vigilance Displays: Further Evidence of Supramodal Resource Depletion in Vigilance. 0.69
35758563 Classification of fired cartridge cases using 3D image capture and a comparison of database correlation method performance. 0.69
35923943 The interaction between metabolic rate, habitat choice, and resource use in a polymorphic freshwater species. 0.69
35898422 Resource acquisition and pre-copulatory sexual selection. 0.69
35350420 Approach of resource expenditure estimation toward mechanization in the manufacturing of cell-based products. 0.69
35005272 Resource management with kernel-based approaches for grid-connected solar photovoltaic systems. 0.69
34603427 Construction of the Reverse Resource Recovery System of e-Waste Based on DLRNN. 0.69
35552462 A soybean non-coding RNA mining and co-expression resource based on 1,596 RNA-seq and small RNA-seq libraries. 0.69
34718719 MetazExp: a database for gene expression and alternative splicing profiles and their analyses based on 53 615 public RNA-seq samples in 72 metazoan species. 0.69
35846593 Relationship Among Green Human Resource Management, Green Knowledge Sharing, Green Commitment, and Green Behavior: A Moderated Mediation Model. 0.69
35854560 Intervention of resource allocation strategies on spatial spread of epidemics. 0.69
35009429 An Effective Strategy to Maintain the CALPHAD Atomic Mobility Database of Multicomponent Systems and Its Application to Hcp Mg-Al-Zn-Sn Alloys. 0.69
35674375 Tapping the potential of biowaste - A valuable resource. 0.69
34765139 Temporal and scalar variations affect resource use of northern bobwhite broods. 0.69
35064124 ROSIE, a database of reptilian offspring sex ratios and sex-determining mechanisms, beginning with Testudines. 0.69
35310592 Application Analysis of Combining BP Neural Network and Logistic Regression in Human Resource Management System. 0.69
34762703 CicerSpTEdb: A web-based database for high-resolution genome-wide identification of transposable elements in Cicer species. 0.69
35722267 Above- and below-ground trait coordination in tree seedlings depend on the most limiting resource: a test comparing a wet and a dry tropical forest in Mexico. 0.69
35056217 Application-Oriented Data Migration to Accelerate In-Memory Database on Hybrid Memory. 0.69
35536677 Adverse Events for Overactive Bladder Medications From a Public Federal Database. 0.69
35730828 Decision criteria for resource allocation: an analysis of CONITEC oncology reports. 0.69
35062409 An Efficient Pareto Optimal Resource Allocation Scheme in Cognitive Radio-Based Internet of Things Networks. 0.69
35338150 A nearly complete database on the records and ecology of the rarest boreal tiger moth from 1840s to 2020. 0.69
35812834 Mindset as a resilience resource and perceived wellness of first responders in a South African context. 0.69
35346412 Service support, work engagement and psychological wellbeing: validating an index of resource and infrastructure support for the delivery of CBT. 0.69
35822851 Genome Sequence Resource of <i>Bacillus velezensis</i> Strain HC-8, a Native Bacterial Endophyte with Biocontrol Potential Against the Honeysuckle Powdery Mildew Causative Pathogen <i>Erysiphe lonicerae</i> var. <i>lonicerae</i>. 0.69
35625518 Restoring Genetic Resource through In Vitro Culturing Testicular Cells from the Cryo-Preserved Tissue of the American Shad (<i>Alosa sapidissima</i>). 0.69
34807530 Contact Dermatitis in Construction Workers in Northeastern Italian Patch Test Database Between 1996 and 2016. 0.69
34777159 Exploring the Moderating Effect of Interpersonal Emotion Regulation Between the Integration of Opportunity and Resource and Entrepreneurial Performance. 0.69
35819139 Exploring the expression patterns of palmitoylating and de-palmitoylating enzymes in the mouse brain using the curated RNA-seq database BrainPalmSeq. 0.69
35078516 One-year spatiotemporal database of Emergency Medical Service (EMS) calls in Mashhad, Iran: data on 224,355 EMS calls. 0.69
35277513 VIB5 database with accurate ab initio quantum chemical molecular potential energy surfaces. 0.69
35709686 Reference Database of Inner Retinal Layer Thickness and Thickness Asymmetry In Healthy Thai Adults as Measured by The Spectralis Spectral-Domain Optical Coherence Tomography. 0.69
35861119 Nomenclature for factors of the HLA system, update April, May and June 2022. 0.69
36070927 Construction of a massive genetic resource by transcriptome sequencing and genetic characterization of Megasyllis nipponica (Annelida: Syllidae). 0.69
35502467 Criminal Action Against Drug Counterfeiters: Assessment of the FDA Office of Criminal Investigation Database 2016 Through 2021. 0.69
35491146 [Discovery of Diverse Natural Products from Undeveloped Fungal Gene Resource by Using Epigenetic Regulation]. 0.69
34849554 Personality: A potentially untapped resource in the selection of postgraduate pharmacy residents. 0.69
35957310 Resource Allocation for Reconfigurable Intelligent Surface Assisted Dual Connectivity. 0.69
35441674 Deephos: Predicted spectral database search for TMT-labeled phosphopeptides and its false discovery rate estimation. 0.69
36038366 MiniNet: Dense squeeze with depthwise separable convolutions for image classification in resource-constrained autonomous systems. 0.69
35471028 Armor-Structured Interconnected-Porous Membranes for Corrosion-Resistant and Highly Permeable Waste Ammonium Resource Recycling. 0.69
35244718 In depth search of the Sequence Read Archive database reveals global distribution of the emerging pathogenic fungus Scedosporium aurantiacum. 0.69
34899776 A Rice Ancestral Genetic Resource Conferring Ideal Plant Shapes for Vegetative Growth and Weed Suppression. 0.69
34696021 Optimizing 3D Convolution Kernels on Stereo Matching for Resource Efficient Computations. 0.69
35415748 Data Resource Profile: The Information System for Research in Primary Care (SIDIAP). 0.69