-
Notifications
You must be signed in to change notification settings - Fork 1
/
mentions - montions.csv
We can't make this file beautiful and searchable because it's too large.
2027 lines (2027 loc) · 612 KB
/
mentions - montions.csv
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
PMCID,Sentence,True?,False?,NER_Tags,Topics
PMC11286849,"Using this technique, we identified 445 proteins with high confidence from trace amounts of highly pure spore preparations, including 52 of the 79 proteins (approximately 70%) previously demonstrated to be localized in spores in the SubtiWiki database and detected through direct protein analysis.",TRUE,FALSE,"(233, 242, 'SubtiWiki', 'subtiwiki')","Molecular interactions, pathways and networks, Gene expression, Model organisms, Endocrinology and metabolism, Phylogenetics"
PMC11286849,The 445 identified proteins were searched against the SubtiWiki and UniProt B.,TRUE,FALSE,"(54, 63, 'SubtiWiki', 'subtiwiki')","Molecular interactions, pathways and networks, Gene expression, Model organisms, Endocrinology and metabolism, Phylogenetics"
PMC11286849,"The identified proteins also included 52 (70%) of the 79 proteins previously annotated as ""sporulation proteins"" in the SubtiWiki database and found in direct protein analysis (marked in yellow in the Supplementary Table S4).",TRUE,FALSE,"(120, 129, 'SubtiWiki', 'subtiwiki')","Molecular interactions, pathways and networks, Gene expression, Model organisms, Endocrinology and metabolism, Phylogenetics"
PMC11286849,The localization of 52 of these 445 proteins in spores is listed in the SubtiWiki database (Supplementary Table S5).,TRUE,FALSE,"(72, 81, 'SubtiWiki', 'subtiwiki')","Molecular interactions, pathways and networks, Gene expression, Model organisms, Endocrinology and metabolism, Phylogenetics"
PMC10832249,MetaPathways v2.5 [37] was used to create the benchmark CAMI environment PGDB (ePGDB) which are PGDBs for microbial communities [38].,TRUE,FALSE,"(0, 12, 'MetaPathways', 'metapathways')","Metagenomics, Microbial ecology, Population genomics"
PMC10832249,MetaPathways utilizes a modified version of PathoLogic for pathway prediction.,TRUE,FALSE,"(0, 12, 'MetaPathways', 'metapathways')","Metagenomics, Microbial ecology, Population genomics"
PMC10832249,PathoLogic was not included in the comparison since MetaPathways uses it to create the ePGDB.,TRUE,FALSE,"(52, 64, 'MetaPathways', 'metapathways')","Metagenomics, Microbial ecology, Population genomics"
PMC10832249,One limitation of the CAMI ePGDB as a benchmark is that it is automatically generated using MetaPathways but the predictions have not been curated so it can be said that the results demonstrate more how similar the other prediction methods are with MetaPathways and PathoLogic than their actual prediction performance.,TRUE,FALSE,"(92, 104, 'MetaPathways', 'metapathways')","Metagenomics, Microbial ecology, Population genomics"
PMC11045623,We used Orbitrap HRMS data of surface water extracts to compare the Automated Target Screening (ATS) workflow with data evaluations performed with the vendor software TraceFinder and the established semi-automated analysis workflow in the MZmine software.,TRUE,FALSE,"(239, 245, 'MZmine', 'mzmine')","Proteomics, Metabolomics, Proteomics experiment, Small molecules"
PMC11045623,The ATS approach increased the overall evaluation performance of the peak annotation compared to the established MZmine module without the need for any post-hoc corrections.,TRUE,FALSE,"(113, 119, 'MZmine', 'mzmine')","Proteomics, Metabolomics, Proteomics experiment, Small molecules"
PMC11045623,"The need for higher throughput data processing in NTS and SS led to the creation of software such as MZmine, which has been used for partially or fully automatic data processing including smoothing, spectra deconvolution, peak detections, and gap filling with sufficient throughput [12, 13].",TRUE,FALSE,"(101, 107, 'MZmine', 'mzmine')","Proteomics, Metabolomics, Proteomics experiment, Small molecules"
PMC11045623,"In addition to NTS and SS, MZmine can also be used to perform targeted analysis by incorporating user-defined lists of target features and retention times to annotate peaks.",TRUE,FALSE,"(27, 33, 'MZmine', 'mzmine')","Proteomics, Metabolomics, Proteomics experiment, Small molecules"
PMC11045623,"In this study, we introduce an open-source unsupervised workflow for Automated Target Screening (ATS) of both GC-HRMS and LC-HRMS data and validate its performance against a manual evaluation in TraceFinder (TF) and batch-mode evaluation in MZmine using a real-life data set.",FALSE,FALSE,"(241, 247, 'MZmine', 'mzmine')","Proteomics, Metabolomics, Proteomics experiment, Small molecules"
PMC11045623,MZmine (version 2.51) was used for comparing the peak annotation performance of ATS to a sophisticated (semi-)automated analysis workflow.,TRUE,FALSE,"(0, 6, 'MZmine', 'mzmine')","Proteomics, Metabolomics, Proteomics experiment, Small molecules"
PMC11045623,"MZmine 2.51 was used in this comparison, although a newer version MZmine 3 has been launched during the preparation of the present study.",TRUE,FALSE,"(0, 6, 'MZmine', 'mzmine')","Proteomics, Metabolomics, Proteomics experiment, Small molecules"
PMC11045623,"As MZmine 3 still uses the same peak detection algorithms, we consider that the results using the older version are comparable [15].",TRUE,FALSE,"(3, 9, 'MZmine', 'mzmine')","Proteomics, Metabolomics, Proteomics experiment, Small molecules"
PMC11045623,The details regarding sample extraction and settings of TraceFinder and MZmine can be accessed from Text S1 to Text S3 in Supporting Information S1.,TRUE,FALSE,"(72, 78, 'MZmine', 'mzmine')","Proteomics, Metabolomics, Proteomics experiment, Small molecules"
PMC11045623,These “CHECK” cases are similar to the peak status “ESTIMATED” in MZmine.,TRUE,FALSE,"(66, 72, 'MZmine', 'mzmine')","Proteomics, Metabolomics, Proteomics experiment, Small molecules"
PMC11045623,"Compounds were selected for peak annotation performance comparison if they had at least one annotated response in one of the three evaluation workflows TraceFinder, ATS, or MZmine.",TRUE,FALSE,"(173, 179, 'MZmine', 'mzmine')","Proteomics, Metabolomics, Proteomics experiment, Small molecules"
PMC11045623,"The peak annotation was compared by calculating the fractions of false positives (FP), false negatives (FN), true positives (TP), and true negatives (TN) of all observations n for MZmine and ATS compared to the manual evaluation in TraceFinder.",TRUE,FALSE,"(180, 186, 'MZmine', 'mzmine')","Proteomics, Metabolomics, Proteomics experiment, Small molecules"
PMC11045623,Only features with the “DETECTED” peak status were included in MZmine.,TRUE,FALSE,"(63, 69, 'MZmine', 'mzmine')","Proteomics, Metabolomics, Proteomics experiment, Small molecules"
PMC11045623,The highest number of chemicals was identified in TF while ATS and MZmine have a lower number but similar patterns of detected chemicals.,FALSE,FALSE,"(67, 73, 'MZmine', 'mzmine')","Proteomics, Metabolomics, Proteomics experiment, Small molecules"
PMC11045623,"The comparison of the peak annotation (see Supporting Information S2, Table S2-4) via ATS_raw, ATS_mzML, and MZmine with selected key figures is listed in Table 1.",FALSE,FALSE,"(109, 115, 'MZmine', 'mzmine')","Proteomics, Metabolomics, Proteomics experiment, Small molecules"
PMC11045623,"For the MZmine analysis of the GC dataset, two sets of retention times were used, (i) a list with retention times as used by ATS with shifts in the range of −1.1 to −0.9 min simulating the case of shifted and not optimized analysis conditions and (ii) the same list of analytes but with exact, shift-corrected retention times as used with TF.",FALSE,FALSE,"(8, 14, 'MZmine', 'mzmine')","Proteomics, Metabolomics, Proteomics experiment, Small molecules"
PMC11045623," Table 1Results of the peak annotation comparison of ATS and MZmineInstrument modeWorkflowTPTNFPFNSensitivitySpecificityAccuracyLC-ESIposATS_raw61110291421300.820.880.86ATS_mzML5161086872230.700.930.84MZmine49710271312570.660.890.80LC-ESInegATS_raw20333483280.880.800.83ATS_mzML17235665580.740.850.81MZmine18431775720.720.810.77GC-EIATS_raw429165691210.780.710.76ATS_mzML382171631680.690.730.71MZmine362091723670.090.540.31MZmine_sc*365163711850.660.700.67*sc shift-corrected, TP true positives, TN true negatives, FP false positives, FN false negatives.",FALSE,FALSE,"(61, 67, 'MZmine', 'mzmine')","Proteomics, Metabolomics, Proteomics experiment, Small molecules"
PMC11045623,Results of the peak annotation comparison of ATS and MZmine,FALSE,FALSE,"(53, 59, 'MZmine', 'mzmine')","Proteomics, Metabolomics, Proteomics experiment, Small molecules"
PMC11045623,"The greatest improvement was observed for the sensitivity, which increased around 1.3-fold if ATS_raw is used compared to MZmine.",FALSE,FALSE,"(122, 128, 'MZmine', 'mzmine')","Proteomics, Metabolomics, Proteomics experiment, Small molecules"
PMC11045623,"However, this could only be achieved for the shift-corrected dataset for MZmine, where the retention times were adjusted a priori to exactly match the correct times as used in TF.",FALSE,FALSE,"(73, 79, 'MZmine', 'mzmine')","Proteomics, Metabolomics, Proteomics experiment, Small molecules"
PMC11045623,ATS increased overall performance and accuracy compared to MZmine (see Table 1).,FALSE,FALSE,"(59, 65, 'MZmine', 'mzmine')","Proteomics, Metabolomics, Proteomics experiment, Small molecules"
PMC11045623,"While some key numbers like sensitivity and specificity or even accuracy are in a similar range for ATS and MZmine (see Table 1), one has to consider that ATS was using a target feature list which was randomly shifted in the range of −1.1 and −0.9 min while MZmine was only performing well if retention times were exactly as observed for the datasets.",FALSE,FALSE,"(108, 114, 'MZmine', 'mzmine')","Proteomics, Metabolomics, Proteomics experiment, Small molecules"
PMC11045623,"For MZmine annotation, retention times of the compound list have to be adjusted prior to annotation in another software (e.g., R or MS Excel), and in TF all expected retention times can be adjusted after visual inspection globally in the method or in relation to internal standards serving as retention time reference.",FALSE,FALSE,"(4, 10, 'MZmine', 'mzmine')","Proteomics, Metabolomics, Proteomics experiment, Small molecules"
PMC11045623,"This was clearly demonstrated for the GC-EI dataset, which performed similarly for the shift-corrected MZmine dataset and the artificially shifted ATS datasets (see Table 1).",FALSE,FALSE,"(103, 109, 'MZmine', 'mzmine')","Proteomics, Metabolomics, Proteomics experiment, Small molecules"
PMC11045623,"In this case, MZmine lists and assigns both peaks to both compounds in the final feature list, while ATS was able to split the peaks and assign the chemicals correctly (see Supporting Information S1, Figure S1-3A).",FALSE,FALSE,"(14, 20, 'MZmine', 'mzmine')","Proteomics, Metabolomics, Proteomics experiment, Small molecules"
PMC11045623,One strategy would be to assign three different features (peaks 1–3) and evaluate them independently in MZmine or manually integrate the three peaks together in TF.,FALSE,FALSE,"(104, 110, 'MZmine', 'mzmine')","Proteomics, Metabolomics, Proteomics experiment, Small molecules"
PMC11045623,"ATS correctly identified and assigned the respective peak of the EIC, whereas MZmine was only able to do so if the retention times had been accurately shift-corrected and small RT windows in advance.",FALSE,FALSE,"(78, 84, 'MZmine', 'mzmine')","Proteomics, Metabolomics, Proteomics experiment, Small molecules"
PMC11045623,"Otherwise, the peak finder of MZmine detects two peaks which have a similar peak pattern but the wrong retention time.",FALSE,FALSE,"(30, 36, 'MZmine', 'mzmine')","Proteomics, Metabolomics, Proteomics experiment, Small molecules"
PMC11045623,ATS is able to increase the overall peak annotation accuracy and outperforms sophisticated workflows like MZmine for challenging scenarios like shifted retention times or co-eluting analytes.,FALSE,FALSE,"(106, 112, 'MZmine', 'mzmine')","Proteomics, Metabolomics, Proteomics experiment, Small molecules"
PMC11449484,"coli (strain s_6558), Klebsiella pneumoniae (strain 4300STDY7045912), and Salmonella enterica (strain 350627) were compared with Jalview.",FALSE,FALSE,"(129, 136, 'Jalview', 'Jalview')","Sequence analysis, Data visualisation"
PMC11449484,coli were compared using Jalview.,FALSE,FALSE,"(25, 32, 'Jalview', 'Jalview')","Sequence analysis, Data visualisation"
PMC11449484,"Jalview was used for editing and viewing sequence alignments (Waterhouse et al., 2009).",FALSE,FALSE,"(0, 7, 'Jalview', 'Jalview')","Sequence analysis, Data visualisation"
PMC11373567,"To address the current digital divide amongst LMICs, and between LMICs and HICs, GGN recommended the Leiden Open Variation Database (LOVD) and the ITHANET Portal as platforms for data collection and data sharing.",FALSE,FALSE,"(147, 154, 'ITHANET', 'the_ithanet_portal')","Genetic variation, Genotype and phenotype, Public health and epidemiology, Haematology, Computational biology, Human genetics, Molecular genetics, Population genetics, Genetics, Molecular biology, Biomarkers, Data visualisation, Database management, Rare diseases"
PMC11373567,"By contrast, ITHANET (https://www.ithanet.eu/; accessed on 17 April 2024) is a web portal initially conceived specifically for hemoglobinopathies, which, as of this writing, holds in its databases sequence and functional annotation for 3462 variants in 538 genes.",FALSE,FALSE,"(13, 20, 'ITHANET', 'the_ithanet_portal')","Genetic variation, Genotype and phenotype, Public health and epidemiology, Haematology, Computational biology, Human genetics, Molecular genetics, Population genetics, Genetics, Molecular biology, Biomarkers, Data visualisation, Database management, Rare diseases"
PMC11373567,"More recently, ITHANET launched new databases, namely IthaPhen [71] for genotype-phenotype correlation and IthaCNVs [72] for improved diagnosis of copy number variants in hemoglobinopathies.",FALSE,FALSE,"(15, 22, 'ITHANET', 'the_ithanet_portal')","Genetic variation, Genotype and phenotype, Public health and epidemiology, Haematology, Computational biology, Human genetics, Molecular genetics, Population genetics, Genetics, Molecular biology, Biomarkers, Data visualisation, Database management, Rare diseases"
PMC11373567,"The enormous diversity of causative β-globin mutations and modifier polymorphisms may be illustrated by using quick filters on ITHANET (www.ithanet.eu, accessed 17 April 2024).",FALSE,FALSE,"(127, 134, 'ITHANET', 'the_ithanet_portal')","Genetic variation, Genotype and phenotype, Public health and epidemiology, Haematology, Computational biology, Human genetics, Molecular genetics, Population genetics, Genetics, Molecular biology, Biomarkers, Data visualisation, Database management, Rare diseases"
PMC11373567,"Accordingly, for the quick filter “Haemoglobinopathy/β-thalassaemia” on ITHANET, 491 variants were found that affect the HBB gene and cause β-thalassemia (https://www.ithanet.eu/db/ithagenes?action=list&hem=2), whereas a quick filter for “Functionality/Disease modifying mutations” revealed 886 entries, many of which are associated with changes in β-thalassemia disease severity (https://www.ithanet.eu/db/ithagenes?action=list&func=2).",FALSE,FALSE,"(72, 79, 'ITHANET', 'the_ithanet_portal')","Genetic variation, Genotype and phenotype, Public health and epidemiology, Haematology, Computational biology, Human genetics, Molecular genetics, Population genetics, Genetics, Molecular biology, Biomarkers, Data visualisation, Database management, Rare diseases"
PMC11373567,"These databases are ClinVar, Global Variome shared LOVD, the Globin Gene Server/HbVar, the Malaysian Node of the Human Variome Project Database (MyHVPDb), and ITHANET.",FALSE,FALSE,"(159, 166, 'ITHANET', 'the_ithanet_portal')","Genetic variation, Genotype and phenotype, Public health and epidemiology, Haematology, Computational biology, Human genetics, Molecular genetics, Population genetics, Genetics, Molecular biology, Biomarkers, Data visualisation, Database management, Rare diseases"
PMC11373567,The IthaGenes database (https://www.ithanet.eu/db/ithagenes) [78] provides a graphical user interface with live and advanced search functionality and integrates and links gene and variant entries with other data on the ITHANET Portal and elsewhere.,FALSE,FALSE,"(219, 226, 'ITHANET', 'the_ithanet_portal')","Genetic variation, Genotype and phenotype, Public health and epidemiology, Haematology, Computational biology, Human genetics, Molecular genetics, Population genetics, Genetics, Molecular biology, Biomarkers, Data visualisation, Database management, Rare diseases"
PMC11373567,"ITHANET with IthaGenes is the presently most comprehensive resource for hemoglobinopathies, which, beyond variant information for causative genes, also includes modifiers, detailed information on phenotypic features, detailed epidemiological information, national health policy and management information, and advanced tools for genotype-phenotype prediction for genetic counseling.",FALSE,FALSE,"(0, 7, 'ITHANET', 'the_ithanet_portal')","Genetic variation, Genotype and phenotype, Public health and epidemiology, Haematology, Computational biology, Human genetics, Molecular genetics, Population genetics, Genetics, Molecular biology, Biomarkers, Data visualisation, Database management, Rare diseases"
PMC11373567,The establishment of individual LOVD-based variant databases in GGN member countries and their integration with the ITHANET Portal as a central resource for hemoglobinopathies as part of this effort may be instrumental in initiating essential data-guided disease management in LMICs and in capturing the diversity of hemoglobinopathies as an international resource.,FALSE,FALSE,"(116, 123, 'ITHANET', 'the_ithanet_portal')","Genetic variation, Genotype and phenotype, Public health and epidemiology, Haematology, Computational biology, Human genetics, Molecular genetics, Population genetics, Genetics, Molecular biology, Biomarkers, Data visualisation, Database management, Rare diseases"
PMC11466383,"The Big Skin Health Intervention Fiji Trial (“Big SHIFT”) carried out surveillance for scabies and SSTIs from July 2018 to June 2019 in the Northern Division of Fiji, an area with high prevalence of scabies, prior to a division-wide ivermectin-based mass drug administration (MDA) campaign.",FALSE,TRUE,"(33, 37, 'Fiji', 'Fiji')","Cell biology, Imaging"
PMC11466383,We extrapolated the total annual number of cases and direct healthcare costs for all divisions in Fiji based upon previous scabies and impetigo prevalence data across all divisions.,FALSE,TRUE,"(98, 102, 'Fiji', 'Fiji')","Cell biology, Imaging"
PMC11466383,"The estimated annual healthcare costs of scabies and related SSTIs in Fiji was US$3.0 million, with cost per capita of $3.3.",FALSE,TRUE,"(70, 74, 'Fiji', 'Fiji')","Cell biology, Imaging"
PMC11466383,Scabies and related SSTIs lead to a heavy economic burden in Fiji and prevention would reduce these healthcare costs.,FALSE,TRUE,"(61, 65, 'Fiji', 'Fiji')","Cell biology, Imaging"
PMC11466383,"This data is the same as supplement to Hospital admissions for skin and soft tissue infections in a population with endemic scabies: A prospective study in Fiji, 2018–2019 - available at https://figshare.com/articles/dataset/Full_data_set_/13355845 The analysis code for replicating the results is available at https://github.com/EdifofonA/ScabiesSSTI-Costs-Fiji.",FALSE,TRUE,"(156, 160, 'Fiji', 'Fiji')","Cell biology, Imaging"
PMC11466383,"There is a high burden of scabies and related SSTIs at the population level in Fiji, an island country located in the South Pacific Ocean with a census population of 884,887 people in 2017 [6].",FALSE,TRUE,"(79, 83, 'Fiji', 'Fiji')","Cell biology, Imaging"
PMC11466383,"In the Skin Health Intervention Fiji Trial (SHIFT) conducted between 2012–2013, scabies prevalence was measured at 36.4% and impetigo prevalence at 23.4% among residents of three islands of Fiji [7].",FALSE,TRUE,"(32, 36, 'Fiji', 'Fiji')","Cell biology, Imaging"
PMC11466383,"In Fiji, scabies is often initially treated with traditional medicines, and many individuals only seek medical care for prolonged illness or when a secondary skin infection develops [9].",FALSE,TRUE,"(3, 7, 'Fiji', 'Fiji')","Cell biology, Imaging"
PMC11466383,"In 2016, the Fiji Government annual Health Status Report reported that SSTIs caused 4.3% of mortality within the country [10].",FALSE,TRUE,"(13, 17, 'Fiji', 'Fiji')","Cell biology, Imaging"
PMC11466383,"In Fiji, two pilot studies were conducted to provide evidence on MDA [7,11].",FALSE,TRUE,"(3, 7, 'Fiji', 'Fiji')","Cell biology, Imaging"
PMC11466383,The Skin Health Intervention Fiji Trial (SHIFT) study demonstrated that ivermectin-based MDA was safe and effective in controlling scabies and impetigo in a study population of approximately 2000 people in Fiji [7].,FALSE,TRUE,"(29, 33, 'Fiji', 'Fiji')","Cell biology, Imaging"
PMC11466383,"Big SHIFT was delivered to the whole population of the Northern Division of Fiji, one of four primary administrative units of Fiji (2017 census population, 131,914) [6].",FALSE,TRUE,"(76, 80, 'Fiji', 'Fiji')","Cell biology, Imaging"
PMC11466383,The Northern division has the highest prevalence of scabies and impetigo among all Fiji divisions–with 1.3 higher odds of scabies and impetigo compared with those in other divisions [8].,FALSE,TRUE,"(83, 87, 'Fiji', 'Fiji')","Cell biology, Imaging"
PMC11466383,Healthcare in Fiji comprises a government public healthcare system and a smaller private healthcare sector [12].,FALSE,TRUE,"(14, 18, 'Fiji', 'Fiji')","Cell biology, Imaging"
PMC11466383,"In 2019, about US$144 million from the Fiji government’s revenue was allocated to health [13].",FALSE,TRUE,"(39, 43, 'Fiji', 'Fiji')","Cell biology, Imaging"
PMC11466383,"Therefore, we sought to estimate the annual direct healthcare costs of scabies and related SSTIs in Fiji, a middle-income Pacific country with high burden of scabies.",FALSE,TRUE,"(100, 104, 'Fiji', 'Fiji')","Cell biology, Imaging"
PMC11466383,This study uses prospectively collected data from the Northern Division of Fiji to estimate the costs of healthcare presentations and hospital admissions among patients with scabies and scabies-related SSTIs prior to the delivery of MDA through Big SHIFT.,FALSE,TRUE,"(75, 79, 'Fiji', 'Fiji')","Cell biology, Imaging"
PMC11466383,Costs are calculated using an ingredients-based approach and then extrapolated to the national level using epidemiological data from Fiji.,FALSE,TRUE,"(133, 137, 'Fiji', 'Fiji')","Cell biology, Imaging"
PMC11466383,"We estimated the mean costs as well as the total annual costs, using extrapolated number of cases in Fiji, to estimate the economic burden at a national level.",FALSE,TRUE,"(101, 105, 'Fiji', 'Fiji')","Cell biology, Imaging"
PMC11466383,We used this perspective because public provision of most outpatient and inpatient care is free in Fiji and user fees are very low compared with the overall health expenditure in government facilities [12].,FALSE,TRUE,"(99, 103, 'Fiji', 'Fiji')","Cell biology, Imaging"
PMC11466383,"To estimate the quantities of medicines, we supplemented the utilization data collected in the trial with relevant antibiotics and treatment guidelines for scabies and SSTIs in Fiji [16,17].",FALSE,TRUE,"(177, 181, 'Fiji', 'Fiji')","Cell biology, Imaging"
PMC11466383,"We used the average household size in Fiji, 4.2 in 2021 [18], to quantify the number of tubes that would be sufficient to treat the whole family as recommended in the guidelines.",FALSE,TRUE,"(38, 42, 'Fiji', 'Fiji')","Cell biology, Imaging"
PMC11466383,"For those prescribed an injection, we used benzathine penicillin (for impetigo) or cloxacillin (for cellulitis, abscess, or severe SSTI) as recommended by Fiji antibiotics guidelines [16].",FALSE,TRUE,"(155, 159, 'Fiji', 'Fiji')","Cell biology, Imaging"
PMC11466383,"The unit costs per diagnostic test, outpatient visit, admission to PHC facilities, and hospital admission were obtained from a Fiji costing study [20].",FALSE,TRUE,"(127, 131, 'Fiji', 'Fiji')","Cell biology, Imaging"
PMC11466383,"The outpatient visits and admission unit cost estimates from the Fiji costing study includes both recurrent costs (staff time and overheads) and capital costs (building, equipment, beds, furniture, and vehicles).",FALSE,TRUE,"(65, 69, 'Fiji', 'Fiji')","Cell biology, Imaging"
PMC11466383,"The Fiji costing study estimated the costs per bed day for the two hospitals (LTK and CWM), so we used the lower of the values to obtain conservative estimates.",FALSE,TRUE,"(4, 8, 'Fiji', 'Fiji')","Cell biology, Imaging"
PMC11466383,The cost of surgical procedures was not estimated separately because it was captured in the unit cost of admissions in the Fiji costing study [20].,FALSE,TRUE,"(123, 127, 'Fiji', 'Fiji')","Cell biology, Imaging"
PMC11466383,"Costs obtained in other years and/or different currencies converted to Fijian dollar using the average exchange rate in that year [21], adjusted to 2020 prices using GDP deflator [22], and converted back to US$ using 2020 exchange rates.",FALSE,TRUE,"(71, 75, 'Fiji', 'Fiji')","Cell biology, Imaging"
PMC11466383,"We extrapolated case numbers to all Fiji divisions using the expected annual number of cases in the Northern Division, and the risk ratio (RR) of scabies infestation between the Northern Division and other divisions.",FALSE,TRUE,"(36, 40, 'Fiji', 'Fiji')","Cell biology, Imaging"
PMC11466383,"A study by Romani [8] indicated that scabies and impetigo cases were prevalent in the Northern division compared with other Fiji divisions, with an adjusted odds ratio (OR) of 1.3 for each disease.",FALSE,TRUE,"(124, 128, 'Fiji', 'Fiji')","Cell biology, Imaging"
PMC11466383,"We converted the OR to risk ratio (RR) using the formula in Zhang and Yu [24], and multiplied this RR WITH the risk in the Northern Division to derive the risk for other Fiji divisions.",FALSE,TRUE,"(170, 174, 'Fiji', 'Fiji')","Cell biology, Imaging"
PMC11466383,"To obtain the expected annual cases in other Fiji divisions, we multiplied the annual risk of cases above with the population size for all other Fiji divisions (752,973 based on 2017 census) [6].",FALSE,TRUE,"(45, 49, 'Fiji', 'Fiji')","Cell biology, Imaging"
PMC11466383,"Lastly, we summed up the number of cases for the Northern and the number for other divisions to get the total annual number of cases in all Fiji divisions.",FALSE,TRUE,"(140, 144, 'Fiji', 'Fiji')","Cell biology, Imaging"
PMC11466383,These extrapolated number of cases in Fiji were multiplied by the mean costs per case to yield the annual costs.,FALSE,TRUE,"(38, 42, 'Fiji', 'Fiji')","Cell biology, Imaging"
PMC11466383,"For ICU, used an average of ICU bed day estimates from two hospitals in the Fiji costing study [20] in the base case, so these two estimates served as our low/high value for sensitivity analysis.",FALSE,TRUE,"(76, 80, 'Fiji', 'Fiji')","Cell biology, Imaging"
PMC11466383,"Ethical approval for Big SHIFT was granted by the Fiji National Health Research Ethics Review Committee (reference: 2018.38.NOR) and the Royal Children’s Hospital Human Research Ethics Committee in Melbourne, Australia (reference: 38020).",FALSE,TRUE,"(50, 54, 'Fiji', 'Fiji')","Cell biology, Imaging"
PMC11466383,"Extrapolating the data from the Northern Division to the rest of Fiji, the estimated annual number of PHC presentations for scabies and related SSTIs was 82,183 (Table 4).",FALSE,TRUE,"(65, 69, 'Fiji', 'Fiji')","Cell biology, Imaging"
PMC11466383,"From a health system perspective, the estimated annual healthcare costs of scabies and related SSTIs in Fiji was US$3.0 million.",FALSE,TRUE,"(104, 108, 'Fiji', 'Fiji')","Cell biology, Imaging"
PMC11466383,One-way sensitivity analysis indicated that variations in the cost per outpatient visit had the biggest influence on the total cost of scabies and SSTIs in Fiji (Fig 2).,FALSE,TRUE,"(156, 160, 'Fiji', 'Fiji')","Cell biology, Imaging"
PMC11466383,We used before-intervention data from the Big SHIFT trial in Fiji and extrapolated these costs to the entire country.,FALSE,TRUE,"(61, 65, 'Fiji', 'Fiji')","Cell biology, Imaging"
PMC11466383,The trial provided rich information on PHC presentations (including visits and admissions) and hospital admissions for scabies and related SSTIs in the Northern Division of Fiji.,FALSE,TRUE,"(173, 177, 'Fiji', 'Fiji')","Cell biology, Imaging"
PMC11466383,"The estimated annual direct healthcare costs of scabies and related SSTIs in Fiji was estimated to be $3.0 million, equivalent to 2.4% of government revenues allocated to health in 2019.",FALSE,TRUE,"(77, 81, 'Fiji', 'Fiji')","Cell biology, Imaging"
PMC11466383,"Scabies and related SSTIs therefore lead to a heavy economic burden in Fiji, raising the potential benefit of prevention programs such as MDA.",FALSE,TRUE,"(71, 75, 'Fiji', 'Fiji')","Cell biology, Imaging"
PMC11466383,"The estimated 23,000 bed days in our study represents 7.1% of admissions for all divisional hospitals in Fiji in 2017 (3.6% of divisional and specialist hospital admissions).",FALSE,TRUE,"(105, 109, 'Fiji', 'Fiji')","Cell biology, Imaging"
PMC11466383,"In countries endemic for scabies like Fiji, patients may not seek treatment of scabies unless it creates a significant disturbance to their quality of life [27].",FALSE,TRUE,"(38, 42, 'Fiji', 'Fiji')","Cell biology, Imaging"
PMC11466383,"This amount is more than double the estimated cost of medicines for treatment of outpatient pneumonia in Fiji [29]; in that study, the average cost of medicines ranged from $1.3 for Nausori PHC to $2.6 for CWMH (in 2020 values).",FALSE,TRUE,"(105, 109, 'Fiji', 'Fiji')","Cell biology, Imaging"
PMC11466383,"While there are few data to guide the attribution of bacterial SSTIs to scabies in highly endemic settings, two lines of evidence suggest that impetigo is highly associated with scabies in Fiji and other Pacific Island countries.",FALSE,TRUE,"(189, 193, 'Fiji', 'Fiji')","Cell biology, Imaging"
PMC11466383,"First, the population attributable risk of impetigo to scabies has ranged from 41 to 93% in studies in Fiji and the Solomon Islands [8,30].",FALSE,TRUE,"(103, 107, 'Fiji', 'Fiji')","Cell biology, Imaging"
PMC11466383,"A strength of our study is that we analyzed PHC data obtained from a trial that was conducted among the entire population of the Northern Division of Fiji, including children and the elderly.",FALSE,TRUE,"(150, 154, 'Fiji', 'Fiji')","Cell biology, Imaging"
PMC11466383,"We only had data to calculate the odds ratio of impetigo in other divisions of Fiji compared to the Northern Division, so we used impetigo as a proxy for all potentially scabies-related SSTIs.",FALSE,TRUE,"(79, 83, 'Fiji', 'Fiji')","Cell biology, Imaging"
PMC11466383,Our approach also assumes that healthcare utilization patterns in other divisions of Fiji were consistent with those observed in the Northern Division.,FALSE,TRUE,"(85, 89, 'Fiji', 'Fiji')","Cell biology, Imaging"
PMC11466383,"Our findings are likely to be relevant to other countries in the Pacific, where the burden of scabies and the costs of treatment may be similar to that of Fiji.",FALSE,TRUE,"(155, 159, 'Fiji', 'Fiji')","Cell biology, Imaging"
PMC11385718,The strains (PGRG2 and PGRG5) were initially mapped to the reference genomes using Burrows-Wheeler aligner “mem” algorithm (BWA-mem) v.0.7.17 (5) and converted and sorted into BAM file using SAMtools v.0.1.18 (6).,FALSE,FALSE,"(191, 199, 'SAMtools', 'samtools')","Mapping, Sequence analysis, Sequencing, Rare diseases"
PMC11385718,A gapped consensus sequence was produced using SAMtools v.0.1.18 and BEDTools (7).,FALSE,FALSE,"(47, 55, 'SAMtools', 'samtools')","Mapping, Sequence analysis, Sequencing, Rare diseases"
PMC11385718,The coverage of consensus sequence was determined using SAMtools coverage with an overall coverage of 94.29% (PGRG2) and 95.93% (PGRG5).,FALSE,FALSE,"(56, 64, 'SAMtools', 'samtools')","Mapping, Sequence analysis, Sequencing, Rare diseases"
PMC11385718,"For the variant calling, SAMtools was used to identify the SNPs and InDels from the sorted BAM file of the mapping.",FALSE,FALSE,"(25, 33, 'SAMtools', 'samtools')","Mapping, Sequence analysis, Sequencing, Rare diseases"
PMC10868310,"This work presents vcfpp, a C++ API of HTSlib in a single file, providing an intuitive interface to manipulate VCF/BCF files rapidly and safely, in addition to being portable.",FALSE,FALSE,"(39, 45, 'HTSlib', 'htslib')",Data management
PMC10868310,The C API of HTSlib (Bonfield et al.,FALSE,FALSE,"(13, 19, 'HTSlib', 'htslib')",Data management
PMC10868310,"The motivation behind vcfpp is to offer full functionalities as HTSlib, and provide a simple and safe API in a single header file, which can be easily integrated for programming in C++ as well as other languages that can call C/C++ codes, such as R (https://www.r-project.org/) and Python (https://www.python.org/).",FALSE,FALSE,"(64, 70, 'HTSlib', 'htslib')",Data management
PMC10868310,2009) but were later separated into HTSlib (Bonfield et al.,FALSE,FALSE,"(36, 42, 'HTSlib', 'htslib')",Data management
PMC10868310,"Therefore, it would be more advantageous to use a specialized library, namely HTSlib, to process the VCF rather than a customized parser.",FALSE,FALSE,"(78, 84, 'HTSlib', 'htslib')",Data management
PMC10868310,"HTSlib offers full functionalities to interact with the VCF, including support for BCF, format validation, compression, random access, identification of variant types, and support for URL links as filenames, among others.",FALSE,FALSE,"(0, 6, 'HTSlib', 'htslib')",Data management
PMC10868310,"Furthermore, HTSlib has demonstrated the best performance among many competitors (Bonfield et al.",FALSE,FALSE,"(13, 19, 'HTSlib', 'htslib')",Data management
PMC10868310,"However, HTSlib was written in C language, which can be challenging for beginner programmers to use, especially when it comes to memory management.",FALSE,FALSE,"(9, 15, 'HTSlib', 'htslib')",Data management
PMC10868310,"As a C++ API of HTSlib, vcfpp inherits all functionalities from HTSlib and is implemented in a single header file that can be easily integrated and used safely.",FALSE,FALSE,"(16, 22, 'HTSlib', 'htslib')",Data management
PMC10868310,"Importantly, vcfpp and vcfppR offer users the full functionalities of HTSlib, including support for compressed VCF/BCF, selection of samples, regions, and variant types.",FALSE,FALSE,"(70, 76, 'HTSlib', 'htslib')",Data management
PMC11512631,"Initially, PCLS were fixed in formalin for 3 days at room temperature, then paraffin-embedded and sectioned into 7 μm slices for hematoxylin and eosin (H&E) and Sirius red staining with standard protocols.3233 However, we found that PCLS from cirrhotic livers were fragile and easily degraded during sectioning and Sirius red staining (Supplemental Figure S3A, left panel, http://links.lww.com/HC9/B65).",FALSE,FALSE,"(161, 167, 'Sirius', 'sirius')","Proteomics, Proteomics experiment, Metabolomics"
PMC11512631,"The amount of collagen in Sirius red–stained sections was scored according to the modified Ishak method34 as described in Supplemental Table S1, http://links.lww.com/HC9/B65.",FALSE,FALSE,"(26, 32, 'Sirius', 'sirius')","Proteomics, Proteomics experiment, Metabolomics"
PMC11512631,"CDAHFD-induced cirrhosis32 was confirmed with Sirius red staining (Supplemental Figure S4A, http://links.lww.com/HC9/B65).",FALSE,FALSE,"(46, 52, 'Sirius', 'sirius')","Proteomics, Proteomics experiment, Metabolomics"
PMC11512631,"This short-term exposure of PCLS slices to erlotinib did not significantly reduce the amount of collagen measured with Sirius red staining (Figures 2C, D).",FALSE,FALSE,"(119, 125, 'Sirius', 'sirius')","Proteomics, Proteomics experiment, Metabolomics"
PMC11512631,Amount of collagen (C) measured with Sirius red staining and (D) quantified with collagen proportionate area analysis in PCLS from CDAHFD-induced mouse cirrhosis after 5 μM erlotinib treatment for 72 hours.,FALSE,FALSE,"(37, 43, 'Sirius', 'sirius')","Proteomics, Proteomics experiment, Metabolomics"
PMC11512631,Amount of collagen (G) measured with Sirius red staining and (H) quantified in PCLS from TAA-induced rat cirrhosis after 5 μM erlotinib treatment for 72 hours.,FALSE,FALSE,"(37, 43, 'Sirius', 'sirius')","Proteomics, Proteomics experiment, Metabolomics"
PMC11512631,The images of Sirius red staining for both CDAHFD and TAA models were presented at ×20 magnification.,FALSE,FALSE,"(14, 20, 'Sirius', 'sirius')","Proteomics, Proteomics experiment, Metabolomics"
PMC11512631,"Cirrhosis was induced by TAA38 and confirmed with Sirius staining (Supplemental Figure S5A, http://links.lww.com/HC9/B65).",FALSE,FALSE,"(50, 56, 'Sirius', 'sirius')","Proteomics, Proteomics experiment, Metabolomics"
PMC11512631,"DEN-induced cirrhosis2339404142 was confirmed with Sirius staining (Supplemental Figure S6A, http://links.lww.com/HC9/B65).",FALSE,FALSE,"(51, 57, 'Sirius', 'sirius')","Proteomics, Proteomics experiment, Metabolomics"
PMC11512631,Amount of collagen (B) measured with Sirius red staining and (C) quantified with collagen proportionate area analysis in PCLS after 5 μM erlotinib treatment for 72 hours.,FALSE,FALSE,"(37, 43, 'Sirius', 'sirius')","Proteomics, Proteomics experiment, Metabolomics"
PMC11512631,Amount of collagen (E) measured with Sirius red staining and (F) quantified after daily i.p.,FALSE,FALSE,"(37, 43, 'Sirius', 'sirius')","Proteomics, Proteomics experiment, Metabolomics"
PMC11512631,"CCl4-induced cirrhosis23 was confirmed with Sirius red staining (Supplemental Figure S7A, http://links.lww.com/HC9/B65).",FALSE,FALSE,"(44, 50, 'Sirius', 'sirius')","Proteomics, Proteomics experiment, Metabolomics"
PMC11512631,(E) Amount of collagen measured with Sirius red staining and quantified with collagen proportionate area analysis in PCLS from normal rats.,FALSE,FALSE,"(37, 43, 'Sirius', 'sirius')","Proteomics, Proteomics experiment, Metabolomics"
PMC11512631,Amount of collagen (B) measured with Sirius red staining and (C) quantified in PCLS from human cirrhosis treated with 5 μM erlotinib for 72 hours.,FALSE,FALSE,"(37, 43, 'Sirius', 'sirius')","Proteomics, Proteomics experiment, Metabolomics"
PMC10765786,"Here, we describe cytoviewer, an R/Bioconductor package for interactive visualization and exploration of multi-channel images and segmentation masks.",FALSE,FALSE,"(18, 28, 'cytoviewer', 'cytoviewer')","Cytometry, Imaging, Oncology, Genotype and phenotype, Software engineering"
PMC10765786,"The cytoviewer package supports flexible generation of image composites, allows side-by-side visualization of single channels, and facilitates the spatial visualization of single-cell data in the form of segmentation masks.",FALSE,FALSE,"(4, 14, 'cytoviewer', 'cytoviewer')","Cytometry, Imaging, Oncology, Genotype and phenotype, Software engineering"
PMC10765786,"As such, cytoviewer improves image and segmentation quality control, the visualization of cell phenotyping results and qualitative validation of hypothesis at any step of data analysis.",FALSE,FALSE,"(9, 19, 'cytoviewer', 'cytoviewer')","Cytometry, Imaging, Oncology, Genotype and phenotype, Software engineering"
PMC10765786,We showcase the functionality and biological application of cytoviewer by analysis of an imaging mass cytometry dataset acquired from cancer samples.,FALSE,FALSE,"(60, 70, 'cytoviewer', 'cytoviewer')","Cytometry, Imaging, Oncology, Genotype and phenotype, Software engineering"
PMC10765786,The cytoviewer package offers a rich set of features for highly multiplexed imaging data visualization in R that seamlessly integrates with the workflow for image and single-cell data analysis.,FALSE,FALSE,"(4, 14, 'cytoviewer', 'cytoviewer')","Cytometry, Imaging, Oncology, Genotype and phenotype, Software engineering"
PMC10765786,It can be installed from Bioconductor via https://www.bioconductor.org/packages/release/bioc/html/cytoviewer.html.,FALSE,FALSE,"(98, 108, 'cytoviewer', 'cytoviewer')","Cytometry, Imaging, Oncology, Genotype and phenotype, Software engineering"
PMC10765786,The development version and further instructions can be found on GitHub at https://github.com/BodenmillerGroup/cytoviewer.,FALSE,FALSE,"(111, 121, 'cytoviewer', 'cytoviewer')","Cytometry, Imaging, Oncology, Genotype and phenotype, Software engineering"
PMC10765786,"Here, we present cytoviewer, an R/Bioconductor package for interactive multi-channel image and segmentation mask visualization in R.",FALSE,FALSE,"(17, 27, 'cytoviewer', 'cytoviewer')","Cytometry, Imaging, Oncology, Genotype and phenotype, Software engineering"
PMC10765786,The cytoviewer package builds on the cytomapper R/Bioconductor package [17] and extends its static visualization abilities via an interactive and user-friendly shiny application.,FALSE,FALSE,"(4, 14, 'cytoviewer', 'cytoviewer')","Cytometry, Imaging, Oncology, Genotype and phenotype, Software engineering"
PMC10765786,"The cytoviewer package integrates into the Bioconductor framework [19] for single-cell and image analysis leveraging the image handling and analysis strategies from the EBImage Bioconductor package [20] and building on commonly used Bioconductor classes such as SingleCellExperiment, SpatialExperiment [21, 22], and CytoImageList [17].",FALSE,FALSE,"(4, 14, 'cytoviewer', 'cytoviewer')","Cytometry, Imaging, Oncology, Genotype and phenotype, Software engineering"
PMC10765786,We showcase the functionality and biological application of cytoviewer by demonstrating visual exploration of an IMC dataset of cancer patients.,FALSE,FALSE,"(60, 70, 'cytoviewer', 'cytoviewer')","Cytometry, Imaging, Oncology, Genotype and phenotype, Software engineering"
PMC10765786,"The R/Bioconductor cytoviewer package leverages the reactive programming framework of the popular R shiny and shinydashboard packages [23], is cross-platform compatible, and launches an interactive web application.",FALSE,FALSE,"(19, 29, 'cytoviewer', 'cytoviewer')","Cytometry, Imaging, Oncology, Genotype and phenotype, Software engineering"
PMC10765786,The graphical user interface (GUI) of the cytoviewer package can be opened directly from R and the function call takes up to five arguments (Fig.,FALSE,FALSE,"(42, 52, 'cytoviewer', 'cytoviewer')","Cytometry, Imaging, Oncology, Genotype and phenotype, Software engineering"
PMC10765786,"The full functionality of cytoviewer is leveraged when images, segmentation masks, and a metadata object are provided (Fig.",FALSE,FALSE,"(26, 36, 'cytoviewer', 'cytoviewer')","Cytometry, Imaging, Oncology, Genotype and phenotype, Software engineering"
PMC10765786,1cytoviewer interface and functionality.,FALSE,FALSE,"(1, 11, 'cytoviewer', 'cytoviewer')","Cytometry, Imaging, Oncology, Genotype and phenotype, Software engineering"
PMC10765786,(A) The supported functionality (right) of cytoviewer depends on the data inputs (left).,FALSE,FALSE,"(43, 53, 'cytoviewer', 'cytoviewer')","Cytometry, Imaging, Oncology, Genotype and phenotype, Software engineering"
PMC10765786,"(B) The graphical user interface of cytoviewer is divided into a body, header, and sidebar.",FALSE,FALSE,"(36, 46, 'cytoviewer', 'cytoviewer')","Cytometry, Imaging, Oncology, Genotype and phenotype, Software engineering"
PMC10765786,"The body of cytoviewer includes the image viewer, which has three tabs: Composite (Image-level), Channels (Image-level), and Mask (Cell-level).",FALSE,FALSE,"(12, 22, 'cytoviewer', 'cytoviewer')","Cytometry, Imaging, Oncology, Genotype and phenotype, Software engineering"
PMC10765786,Scale bar: 150 µm (C) cytoviewer supports different viewing modes.,FALSE,FALSE,"(22, 32, 'cytoviewer', 'cytoviewer')","Cytometry, Imaging, Oncology, Genotype and phenotype, Software engineering"
PMC10765786,cytoviewer interface and functionality.,FALSE,FALSE,"(0, 10, 'cytoviewer', 'cytoviewer')","Cytometry, Imaging, Oncology, Genotype and phenotype, Software engineering"
PMC10765786,"The cytoviewer GUI has three main parts: body, sidebar, and header (Fig.",FALSE,FALSE,"(4, 14, 'cytoviewer', 'cytoviewer')","Cytometry, Imaging, Oncology, Genotype and phenotype, Software engineering"
PMC10765786,The body of cytoviewer features the image viewer.,FALSE,FALSE,"(12, 22, 'cytoviewer', 'cytoviewer')","Cytometry, Imaging, Oncology, Genotype and phenotype, Software engineering"
PMC10765786,"To demonstrate the functionality and potential biological applications of the cytoviewer package, we explored an example IMC dataset from the Integrated iMMUnoprofiling of large adaptive CANcer patient cohort project (immucan.eu) (Additional file 5: Supplementary Notes—S1.4).",FALSE,FALSE,"(78, 88, 'cytoviewer', 'cytoviewer')","Cytometry, Imaging, Oncology, Genotype and phenotype, Software engineering"
PMC10765786,"Here, we showcase the different viewing modes of cytoviewer by analyses of images from a breast cancer patient (Patient2_003) and outline the rich biological information content for each step (Fig.",FALSE,FALSE,"(49, 59, 'cytoviewer', 'cytoviewer')","Cytometry, Imaging, Oncology, Genotype and phenotype, Software engineering"
PMC10765786,"The R/Bioconductor cytoviewer package provides a rich set of visualization features including (1) visualization of composite and single-channel images, (2) outlining of cells on images, (3) setting cell outline colors based on cellular metadata (e.g., cell phenotype), (4) coloring segmentation masks based on cellular metadata (e.g., cell area) and (5) easy access and download of generated plots for publication, among others.",FALSE,FALSE,"(19, 29, 'cytoviewer', 'cytoviewer')","Cytometry, Imaging, Oncology, Genotype and phenotype, Software engineering"
PMC10765786,"The cytoviewer package operates on standard data containers of the Bioconductor project [19] such as SingleCellExperiment/SpatialExperiment [21, 22] and CytoImageList [17] and can thus be readily implemented into existing R pipelines for image and single-cell analysis.",FALSE,FALSE,"(4, 14, 'cytoviewer', 'cytoviewer')","Cytometry, Imaging, Oncology, Genotype and phenotype, Software engineering"
PMC10765786,The versatile and easy-to-use graphical user interface of cytoviewer further allows accessibility to users with little bioinformatics training and coding experience.,FALSE,FALSE,"(58, 68, 'cytoviewer', 'cytoviewer')","Cytometry, Imaging, Oncology, Genotype and phenotype, Software engineering"
PMC10765786,"Here, we demonstrated the use of cytoviewer by exploring IMC data (Additional file 1, 2).",FALSE,FALSE,"(33, 43, 'cytoviewer', 'cytoviewer')","Cytometry, Imaging, Oncology, Genotype and phenotype, Software engineering"
PMC10765786,"However, data from other multiplexed imaging technologies including t-CyCIF [6], CODEX [7], or MIBI [8], which produce pixel-level intensities and (optionally) segmentation masks, can be interactively visualized with cytoviewer as long as the input format is appropriate.",FALSE,FALSE,"(217, 227, 'cytoviewer', 'cytoviewer')","Cytometry, Imaging, Oncology, Genotype and phenotype, Software engineering"
PMC10765786,We have integrated cytoviewer into our widely adopted data analysis pipeline for multiplexed imaging data [10] (https://bodenmillergroup.github.io/IMCDataAnalysis/) and envision that the package will meet the needs of the fast-growing community of highly multiplexed imaging users [11].,FALSE,FALSE,"(19, 29, 'cytoviewer', 'cytoviewer')","Cytometry, Imaging, Oncology, Genotype and phenotype, Software engineering"
PMC10765786,"The newly developed R/Bioconductor cytoviewer package, written in the statistical programming language R, allows interactive visualization and exploration of multi-channel images and segmentation masks.",FALSE,FALSE,"(35, 45, 'cytoviewer', 'cytoviewer')","Cytometry, Imaging, Oncology, Genotype and phenotype, Software engineering"
PMC10765786,Project name: cytoviewerProject home page: https://github.com/BodenmillerGroup/cytoviewerOperating system(s): Platform independentProgramming language: ROther requirements: R > = 4.0License: NoneAny restrictions to use by non-academics: None,FALSE,FALSE,"(15, 25, 'cytoviewer', 'cytoviewer')","Cytometry, Imaging, Oncology, Genotype and phenotype, Software engineering"
PMC10765786,Project name: cytoviewer,FALSE,FALSE,"(14, 24, 'cytoviewer', 'cytoviewer')","Cytometry, Imaging, Oncology, Genotype and phenotype, Software engineering"
PMC10765786,Project home page: https://github.com/BodenmillerGroup/cytoviewer,FALSE,FALSE,"(55, 65, 'cytoviewer', 'cytoviewer')","Cytometry, Imaging, Oncology, Genotype and phenotype, Software engineering"
PMC10765786,A video demonstrating the functionality of cytoviewer.Additional file 3: Fig.,FALSE,FALSE,"(43, 53, 'cytoviewer', 'cytoviewer')","Cytometry, Imaging, Oncology, Genotype and phenotype, Software engineering"
PMC10765786,cytoviewer graphical user interface overview.,FALSE,FALSE,"(0, 10, 'cytoviewer', 'cytoviewer')","Cytometry, Imaging, Oncology, Genotype and phenotype, Software engineering"
PMC10765786,The graphical user interface of cytoviewer for the three different viewer modes.,FALSE,FALSE,"(32, 42, 'cytoviewer', 'cytoviewer')","Cytometry, Imaging, Oncology, Genotype and phenotype, Software engineering"
PMC10765786,cytoviewer image filters.,FALSE,FALSE,"(0, 10, 'cytoviewer', 'cytoviewer')","Cytometry, Imaging, Oncology, Genotype and phenotype, Software engineering"
PMC10765786,A video demonstrating the functionality of cytoviewer.,FALSE,FALSE,"(43, 53, 'cytoviewer', 'cytoviewer')","Cytometry, Imaging, Oncology, Genotype and phenotype, Software engineering"
PMC11202377,Two of the most popular ones are RepeatModeler [9] and REPET [8].,FALSE,FALSE,"(55, 60, 'REPET', 'repet')","Sequence composition, complexity and repeats, DNA, Nucleic acid structure analysis"
PMC11202377,"For each of the species we compared the results of pantera to those of a reference library and those obtained with a denovo method, RepeatModeler for Drosophila melanogaster and Danio rerio and REPET for Oryza sativa.Fig.",FALSE,FALSE,"(194, 199, 'REPET', 'repet')","Sequence composition, complexity and repeats, DNA, Nucleic acid structure analysis"
PMC11202377,"In this case we compared the results of pantera to the uncurated library obtained with REPET [8, 34, 35] downloaded directly from REPETDB [1] composed of 2,479 families.",FALSE,FALSE,"(87, 92, 'REPET', 'repet')","Sequence composition, complexity and repeats, DNA, Nucleic acid structure analysis"
PMC11202377,Pantera found more near-full length (> 90%) members of the reference libraries than RepeatModeler (fruit fly and zebrafish) or REPET (rice) except for LTR elements for rice and zebrafish.,FALSE,FALSE,"(127, 132, 'REPET', 'repet')","Sequence composition, complexity and repeats, DNA, Nucleic acid structure analysis"
PMC11202377,"As an example, of 48 CMC-EnSpm families identified by pantera, only 5 lack the expected TIR elements, compared to 29 families missing the TIR element out of 70 in the REPET results.",FALSE,FALSE,"(167, 172, 'REPET', 'repet')","Sequence composition, complexity and repeats, DNA, Nucleic acid structure analysis"
PMC11202377,"pantera (N = 525), rice6.9.5 (N = 2431), REPET (N = 2471) c Danio rerio.",FALSE,FALSE,"(41, 46, 'REPET', 'repet')","Sequence composition, complexity and repeats, DNA, Nucleic acid structure analysis"
PMC11202377,8) except for the REPET library for rice for which we used a library previously generated.,FALSE,FALSE,"(18, 23, 'REPET', 'repet')","Sequence composition, complexity and repeats, DNA, Nucleic acid structure analysis"
PMC11202377,"Because pantera tends to generate full length consensus sequences more frequently than tools that start from a repeat-first approach, we suggest that it might be used first, then the genome be masked for sequences found by pantera, then a method such as RepeatModeler or REPET be used on the masked genome.",FALSE,FALSE,"(271, 276, 'REPET', 'repet')","Sequence composition, complexity and repeats, DNA, Nucleic acid structure analysis"
PMC11202377,"The authors want to acknowledge the support of Simon Orozco (Institut de Biologia Evolutiva—CSIC UPF) for his feedback on TE library benchmarking methods, Johann Confais (INRAE) for providing the REPET library for Oryza sativa and Jessica Storer (Dfam—University of Connecticut) for her insights on TE curation.",FALSE,FALSE,"(196, 201, 'REPET', 'repet')","Sequence composition, complexity and repeats, DNA, Nucleic acid structure analysis"
PMC10620421,PASTEClassifier19 was used to categorize different types of repetitive sequences.,FALSE,FALSE,"(0, 15, 'PASTEClassifier', 'PASTEClassifier')","Sequence composition, complexity and repeats"
PMC10620421,"(1) BWA v0.7.10-r789: aln, default parameters; (2) LACHESIS: CLUSTER_MIN_RE_SITES = 547; CLUSTER_MAX_LINK_DENSITY = 2; CLUSTER_NONINFORMATIVE_RATIO = 2; ORDER_MIN_N_RES_IN_TRUN = 1094; ORDER_MIN_N_RES_IN_SHREDS = 1076; (3) BUSCO v3.0: --evalue 1e-03 (E-value cutoff for BLAST searches), -sp human; (4) LTR_FINDER: default parameters; (5) RepeatScout: default parameters; (6) PASTEClassifier: default parameters; (7) RepeatMasker: -nolow -no_is -norna -engine wublast; (8) Genscan: default parameters; (9) Augustus v2.4: default parameters; (10) GlimmerHMM v3.0.4: default parameters; (11) GeneID v1.4: default parameters; (12) SNAP: version 2006-07-28, default parameters; (13) GeMoMa v1.3.1: default parameters; (14) Hisat v2.0.4: --max-intronlen 20000, --min-intronlen 20; (15) Stringtie v1.2.3: default parameters; (16) TransDecoder v2.0: default parameters; (17) GeneMark-ST v5.1: default parameters; (18) PASA v2.0.2: -align_tools gmap, -maxIntronLen 20000; (19) EVM v1.1.1: default parameters; (20) BLAST V2.2.31: -evalue 1e-5; (21) tRNAscan-SE: default parameters.",FALSE,FALSE,"(375, 390, 'PASTEClassifier', 'PASTEClassifier')","Sequence composition, complexity and repeats"
PMC10167986,SyntenyViewer is a public web-based tool relying on a relational database available at https://urgi.versailles.inrae.fr/synteny delivering comparative genomics data and associated reservoir of conserved genes between angiosperm species for both fundamental (evolutionary studies) and applied (translational research) applications.,FALSE,FALSE,"(0, 13, 'SyntenyViewer', 'urgi')","Mapping, Plant biology, Structural variation, Paleogenomics, Protein expression, Comparative genomics"
PMC10167986,"SyntenyViewer is made available for (i) providing comparative genomics data for seven major botanical families of flowering plants, (ii) delivering a robust catalog of 103 465 conserved genes between 44 species and inferred ancestral genomes, (iii) allowing us to investigate the evolutionary fate of ancestral genes and genomic regions in modern species through duplications, inversions, deletions, fusions, fissions and translocations, (iv) use as a tool to conduct translational research of key trait-related genes from model species to crops and (v) offering to host any comparative genomics data following simplified procedures and formats",FALSE,FALSE,"(0, 13, 'SyntenyViewer', 'urgi')","Mapping, Plant biology, Structural variation, Paleogenomics, Protein expression, Comparative genomics"
PMC10167986,SyntenyViewer is a web resource to perform comparative genomics in plants;,FALSE,FALSE,"(0, 13, 'SyntenyViewer', 'urgi')","Mapping, Plant biology, Structural variation, Paleogenomics, Protein expression, Comparative genomics"
PMC10167986,SyntenyViewer allows access to expertised data and to download novel analyses;,FALSE,FALSE,"(0, 13, 'SyntenyViewer', 'urgi')","Mapping, Plant biology, Structural variation, Paleogenomics, Protein expression, Comparative genomics"
PMC10167986,"SyntenyViewer provides methods, scripts, documents and procedures to generate comparative genomics data.",FALSE,FALSE,"(0, 13, 'SyntenyViewer', 'urgi')","Mapping, Plant biology, Structural variation, Paleogenomics, Protein expression, Comparative genomics"
PMC10167986,"This article presents SyntenyViewer, a web-based tool hosting expertised synteny relationships between angiosperm genomes through the reconstruction of ancestral genomes (17), and discusses potential uses of the delivered catalog of conserved genes for evolutionary studies as well translational research investigation.",FALSE,FALSE,"(22, 35, 'SyntenyViewer', 'urgi')","Mapping, Plant biology, Structural variation, Paleogenomics, Protein expression, Comparative genomics"
PMC10167986,"SyntenyViewer is a tool relying on a relational database (DB), aiming at displaying and making publicly available the previously described comparative genomics data at https://urgi.versailles.inrae.fr/synteny.",FALSE,FALSE,"(0, 13, 'SyntenyViewer', 'urgi')","Mapping, Plant biology, Structural variation, Paleogenomics, Protein expression, Comparative genomics"
PMC10167986,SyntenyViewer data processing and database description.,FALSE,FALSE,"(0, 13, 'SyntenyViewer', 'urgi')","Mapping, Plant biology, Structural variation, Paleogenomics, Protein expression, Comparative genomics"
PMC10167986,"(a) Illustration of theSyntenyViewer architecture including the data integration step into a PostgreSQL instance, and the data visualization based on GWT powered by Apache Tomcat and Apache HTTP server.",FALSE,FALSE,"(23, 36, 'SyntenyViewer', 'urgi')","Mapping, Plant biology, Structural variation, Paleogenomics, Protein expression, Comparative genomics"
PMC10167986,(b) Illustration of the SyntenyViewer database model with for each box a table named with its primary key term (referenced below).,FALSE,FALSE,"(24, 37, 'SyntenyViewer', 'urgi')","Mapping, Plant biology, Structural variation, Paleogenomics, Protein expression, Comparative genomics"
PMC10167986,"Following this methodology, SyntenyViewer delivers published comparative genomics data (listed in Table 1) obtained for the two major angiosperm families with the grasses within the monocots [ancestral grass karyotype (AGK) with 12 protochromosomes and 16 560 PGs (21, 22)] and the eudicots [ancestral eudicot karyotype (AEK) with 21 chromosomes and 10 286 PGs (23)].",FALSE,FALSE,"(28, 41, 'SyntenyViewer', 'urgi')","Mapping, Plant biology, Structural variation, Paleogenomics, Protein expression, Comparative genomics"
PMC10167986,"SyntenyViewer also provides published comparative genomics data for angiosperm lineages of agronomical interest such as Rosaceae [ancestral Rosaceae karyotype (ARK) with nine protochromosomes and 8861 PGs (24, 25)], Brassicaceae [ancestral Brassicaceae karyotype (ABK) with eight protochromosomes and 20 037 PGs (26, 27)], Cucurbitaceae [ancestral Cucurbitaceae karyotype (ACuK) with 22 protochromosomes and 17 969 PGs (28, 29)], legumes [ancestral legume karyotype (ALK) with 16 protochromosomes and 13 181 PGs (30–32)] and Solanaceae [ancestral Solanaceae karyotype (ASK) with 17 protochromosomes and 17 879 PGs (33)].",FALSE,FALSE,"(0, 13, 'SyntenyViewer', 'urgi')","Mapping, Plant biology, Structural variation, Paleogenomics, Protein expression, Comparative genomics"
PMC10167986,"For example, see the Terms tab of ‘PlantSyntenyViewer Solanaceae submission file’ where the license is also prompted when a user attempts to download the associated file (Table 1).",FALSE,FALSE,"(40, 53, 'SyntenyViewer', 'urgi')","Mapping, Plant biology, Structural variation, Paleogenomics, Protein expression, Comparative genomics"
PMC10167986,"Previous synteny data are integrated into the SyntenyViewer tool relying on a DB with a Java web application for graphical dynamic web content processing, a web server (Apache HTTP and Apache Tomcat) and a PostgreSQL 9.6 instance to store the data (Figure 2).",FALSE,FALSE,"(46, 59, 'SyntenyViewer', 'urgi')","Mapping, Plant biology, Structural variation, Paleogenomics, Protein expression, Comparative genomics"
PMC10167986,"A spreadsheet-based data exchange format allows synteny data submission to SyntenyViewer, available at https://urgi.versailles.inrae.fr/Data/Synteny/Data-submission.",FALSE,FALSE,"(75, 88, 'SyntenyViewer', 'urgi')","Mapping, Plant biology, Structural variation, Paleogenomics, Protein expression, Comparative genomics"
PMC10167986,"Synteny data is then made publicly available when the format described on our website (https://urgi.versailles.inrae.fr/Data/Synteny/Data-submission), and the aims of SyntenyViewer are met.",FALSE,FALSE,"(167, 180, 'SyntenyViewer', 'urgi')","Mapping, Plant biology, Structural variation, Paleogenomics, Protein expression, Comparative genomics"
PMC10167986,There are two main entry points to visualize SyntenyViewer data (cf Supplementary Video).,FALSE,FALSE,"(45, 58, 'SyntenyViewer', 'urgi')","Mapping, Plant biology, Structural variation, Paleogenomics, Protein expression, Comparative genomics"
PMC10167986,"At any stage, the SyntenyViewer’s Uniform Resource Locator is dynamically updated, and it can be bookmarked in the browser for sharing the visualization link, which makes users able to go back to previous work and pursue exploration.",FALSE,FALSE,"(18, 31, 'SyntenyViewer', 'urgi')","Mapping, Plant biology, Structural variation, Paleogenomics, Protein expression, Comparative genomics"
PMC10167986,"The delivered SyntenyViewer tool gives public access to validated and reviewed comparative genomics data either between angiosperm species or within major botanical families that can be used as a backbone to investigate evolutionary trends of genes, perform translational research of traits and conduct evolutionary developmental biology (for Evo-Devo) investigation of traits.",FALSE,FALSE,"(14, 27, 'SyntenyViewer', 'urgi')","Mapping, Plant biology, Structural variation, Paleogenomics, Protein expression, Comparative genomics"
PMC10167986,"SyntenyViewer allows deep investigation of evolutionary fates of ancestral genes/genomes, through precise identification of the changes involved (gains and losses of genes and associated gene ontologies) and their assignment to specific species or botanical families (Figure 3a).",FALSE,FALSE,"(0, 13, 'SyntenyViewer', 'urgi')","Mapping, Plant biology, Structural variation, Paleogenomics, Protein expression, Comparative genomics"
PMC10167986,"SyntenyViewer, a comparative genomics-driven translational research tool.",FALSE,FALSE,"(0, 13, 'SyntenyViewer', 'urgi')","Mapping, Plant biology, Structural variation, Paleogenomics, Protein expression, Comparative genomics"
PMC10167986,(b) ‘SyntenyViewer screen capture’.,FALSE,FALSE,"(5, 18, 'SyntenyViewer', 'urgi')","Mapping, Plant biology, Structural variation, Paleogenomics, Protein expression, Comparative genomics"
PMC10167986,"SyntenyViewer tool with the setting parameters (search by gene name and ancestral or modern chromosomes) illustrated at the left and the derived comparative genomics data visualization, as detailed in the text, at the right (here for cereals).",FALSE,FALSE,"(0, 13, 'SyntenyViewer', 'urgi')","Mapping, Plant biology, Structural variation, Paleogenomics, Protein expression, Comparative genomics"
PMC10167986,FZP gene characterization in grasses with orthologs from SyntenyViewer (Panel b) and functional validation in wheat and Brachypodium (in mutants compared to wild type) in deriving similar SS phenotypes (adapted from (47)).,FALSE,FALSE,"(57, 70, 'SyntenyViewer', 'urgi')","Mapping, Plant biology, Structural variation, Paleogenomics, Protein expression, Comparative genomics"
PMC10167986,"SyntenyViewer can also be used as a useful tool for translational research on genes driving key agronomical traits, particularly from model species (such as Arabidopsis thaliana) to crops (41).",FALSE,FALSE,"(0, 13, 'SyntenyViewer', 'urgi')","Mapping, Plant biology, Structural variation, Paleogenomics, Protein expression, Comparative genomics"
PMC10167986,"From the gene conservation information delivered from SyntenyViewer, further validation needs to be conducted to establish the conservation of the phenotype or trait between the investigated species.",FALSE,FALSE,"(54, 67, 'SyntenyViewer', 'urgi')","Mapping, Plant biology, Structural variation, Paleogenomics, Protein expression, Comparative genomics"
PMC10167986,"Beside translational research of genes, SyntenyViewer allows us to conduct ‘Evo-Devo dissection of traits’.",FALSE,FALSE,"(40, 53, 'SyntenyViewer', 'urgi')","Mapping, Plant biology, Structural variation, Paleogenomics, Protein expression, Comparative genomics"
PMC10167986,"SyntenyViewer allows us to compare a group of angiosperm species that acquired new phenotypes (or traits in the broad sense) in the course of evolution, compared to a group of species that did not acquire this trait.",FALSE,FALSE,"(0, 13, 'SyntenyViewer', 'urgi')","Mapping, Plant biology, Structural variation, Paleogenomics, Protein expression, Comparative genomics"
PMC10167986,"Overall, SyntenyViewer is a web-based tool delivering comparative genomics data either between angiosperm species or within major botanical families (including the Rosaceae, Brassicaceae, Cucurbitaceae, legume and Solanaceae) for evolutionary and translational research purposes.",FALSE,FALSE,"(9, 22, 'SyntenyViewer', 'urgi')","Mapping, Plant biology, Structural variation, Paleogenomics, Protein expression, Comparative genomics"
PMC10167986,"The ‘Région Auvergne-Rhône-Alpes’ and ‘Fonds Européen de Développement Régional’ (#23000816 project ‘SRESRI-2015’), the Institut Carnot Plant2Pro (project ‘SyntenyViewer’), the Initiative-Science-Innovation-Territoires-Economie (ISITE) CAP2025 (#00002146 SRESRI 2015, Pack Ambition Recherche Project ‘TransBlé’), the Agence Nationale de la Recherche (ANR) projects ‘BREEDWHEAT’ (ANR-10-BTBR-03-06), the Biomass For the Future project (ANR-11-BTBR-0006), the ANR project, for Plant and Animal Genome Evolution (PAGE) (ANR-11-BSV6-0008) and the Plant Bioinformatics Facility (https://doi.org/10.15454/1.5572414581735654E12).",FALSE,FALSE,"(156, 169, 'SyntenyViewer', 'urgi')","Mapping, Plant biology, Structural variation, Paleogenomics, Protein expression, Comparative genomics"
PMC4870745,We developed a simple Web application called Phenotator for the data providers to submit and annotate their phenotypes with an EQ.,FALSE,FALSE,"(45, 55, 'Phenotator', 'phenotator')","Ontology and terminology, Data management"
PMC4870745,The Phenotator is built using services from the NCBO BioPortal [15] to generate simple drop down menus and autocomplete search functionality to guide the users in generating EQs with appropriate terms (Fig.,FALSE,FALSE,"(4, 14, 'Phenotator', 'phenotator')","Ontology and terminology, Data management"
PMC4870745,"Phenotator has a feature to export the collected EQ annotations as an OWL file containing new terms that are logically defined according to the SUBQ pattern,10 which can be expressed in Manchester OWL syntax as “(has_part some (<Quality> and inheres_in some <Entity>))”.",FALSE,FALSE,"(0, 10, 'Phenotator', 'phenotator')","Ontology and terminology, Data management"
PMC4870745,"One hundred twenty-seven phenotype descriptions from the original 11 datasets were entered into Phenotator, together with 41 phenotypes collected from cell migration assays (Z.",FALSE,FALSE,"(96, 106, 'Phenotator', 'phenotator')","Ontology and terminology, Data management"
PMC4870745,The EQs were exported from Phenotator as an OWL file and loaded into the Protege OWL ontology editor.,FALSE,FALSE,"(27, 37, 'Phenotator', 'phenotator')","Ontology and terminology, Data management"
PMC4870745,"To increase the expressivity of the annotation in Phenotator a third column was added to capture additional modifiers to the EQ resulting in annotations emerging like EQE2 (‘actin filament’, ‘localised’, ‘cytosol’).",FALSE,FALSE,"(50, 60, 'Phenotator', 'phenotator')","Ontology and terminology, Data management"
PMC4870745,Pattern-based tooling to rapidly generate new terms are emerging and these could nicely complement existing tooling that are primarily aimed at annotating phenotypes with EQs such as Phenotator and Phenote.,FALSE,FALSE,"(183, 193, 'Phenotator', 'phenotator')","Ontology and terminology, Data management"
PMC4870745,Phenotator and Phenote do little to guide the annotator to make a correct EQ annotation and the translation of these annotations to OWL typically only allows for a basic SUBQ pattern.,FALSE,FALSE,"(0, 10, 'Phenotator', 'phenotator')","Ontology and terminology, Data management"
PMC4870745,The Phenotator and Webulous software was developed by SJ and TB.,FALSE,FALSE,"(4, 14, 'Phenotator', 'phenotator')","Ontology and terminology, Data management"
PMC5753341,"We introduce the marine databases; MarRef, MarDB and MarCat (https://mmp.sfb.uit.no/databases/), which are publicly available resources that promote marine research and innovation.",FALSE,FALSE,"(53, 59, 'MarCat', 'marcat')","Marine biology, Microbiology, Metagenomics, Data mining"
PMC5753341,"The last database, MarCat, represents a gene (protein) catalog of uncultivable (and cultivable) marine genes and proteins derived from marine metagenomics samples.",FALSE,FALSE,"(19, 25, 'MarCat', 'marcat')","Marine biology, Microbiology, Metagenomics, Data mining"
PMC5753341,"Currently, MarCat contains 1227 records with 55 metadata fields.",FALSE,FALSE,"(11, 17, 'MarCat', 'marcat')","Marine biology, Microbiology, Metagenomics, Data mining"
PMC5753341,"Here, we introduced the contextual and sequence MAR databases: MarRef, MarDB and MarCat, with manually curated metadata including attributes for sampling, sequencing, assembly and annotation in addition to the organism and taxonomic information and their corresponding nucleotide and protein sequences.",FALSE,FALSE,"(81, 87, 'MarCat', 'marcat')","Marine biology, Microbiology, Metagenomics, Data mining"
PMC5753341,Only metagenomic sequences in relation with MarCat has been processed using META-pipe for the first release.,FALSE,FALSE,"(44, 50, 'MarCat', 'marcat')","Marine biology, Microbiology, Metagenomics, Data mining"
PMC5753341,"The MarRef, MarDB and MarCat sequence databases are based on the non-redundant genome and metagenome datasets obtained from ENA (European Nucleotide Archive, http://www.ebi.ac.uk/ena) and NCBI (https://www.ncbi.nlm.nih.gov/).",FALSE,FALSE,"(22, 28, 'MarCat', 'marcat')","Marine biology, Microbiology, Metagenomics, Data mining"
PMC5753341,MarCat represents a gene (protein) catalog of predicted marine genes derived from marine metagenomic samples.,FALSE,FALSE,"(0, 6, 'MarCat', 'marcat')","Marine biology, Microbiology, Metagenomics, Data mining"
PMC5753341,"The MarRef, MarDB and MarCat contextual databases are built by compiling data from a number of publicly available sequence, taxonomy and literature databases in a semi-automatic fashion.",FALSE,FALSE,"(22, 28, 'MarCat', 'marcat')","Marine biology, Microbiology, Metagenomics, Data mining"
PMC5753341,"The gene (protein) catalog database derived from marine metagenomic samples, MarCat, contains 1227 records, including samples from the Tara Ocean expedition (248 records) and Ocean Sampling Day (150 records).",FALSE,FALSE,"(77, 83, 'MarCat', 'marcat')","Marine biology, Microbiology, Metagenomics, Data mining"
PMC5753341,"While MarRef is thoroughly curated, MarDB and MarCat are only partly curated.",FALSE,FALSE,"(46, 52, 'MarCat', 'marcat')","Marine biology, Microbiology, Metagenomics, Data mining"
PMC5753341,"Records in the marine databases, MarRef, MarDB and MarCat follow the MlxS standard guidelines developed by the Genomic Standard Consortium, in addition to ontologies such as ENVO and GAZ.",FALSE,FALSE,"(51, 57, 'MarCat', 'marcat')","Marine biology, Microbiology, Metagenomics, Data mining"
PMC5753341,"The MarRef, MarDB and MarCat sequence databases are based on the non-redundant genome and metagenome datasets obtained from ENA and NCBI and by manually inspection assigned as belonging to the ‘marine microbial biome’ according to our definition.",FALSE,FALSE,"(22, 28, 'MarCat', 'marcat')","Marine biology, Microbiology, Metagenomics, Data mining"
PMC5753341,MarCat represents a catalog of uncultivable (and cultivable) full-length genes (proteins) derived from marine metagenomic samples based on the Marine projects in EBI metagenomics (https://www.ebi.ac.uk/metagenomics/).,FALSE,FALSE,"(1, 7, 'MarCat', 'marcat')","Marine biology, Microbiology, Metagenomics, Data mining"
PMC5753341,Using META-pipe for gene prediction and functional assignment allowed us to generate a consistent catalog across the datasets in MarCat (See https://f1000research.com/articles/6–70/v1 for a more detailed description of functional assignment).,FALSE,FALSE,"(129, 135, 'MarCat', 'marcat')","Marine biology, Microbiology, Metagenomics, Data mining"
PMC5753341,"The index of MarCat (not shown) is less comprehensive, thus have fever filtering options.",FALSE,FALSE,"(13, 19, 'MarCat', 'marcat')","Marine biology, Microbiology, Metagenomics, Data mining"
PMC5753341,"For MarCat, the metagenome databases, the 55 metadata fields have been divided into four categories: isolate info, sampling info, host and pathogenicity info and assembly info, in addition to Summary.",FALSE,FALSE,"(4, 10, 'MarCat', 'marcat')","Marine biology, Microbiology, Metagenomics, Data mining"
PMC5753341,"The BLAST (35) sequence databases provide similarity search against all nucleotide and protein sequences of records included in MarRef, MarDB and MarCat.",FALSE,FALSE,"(146, 152, 'MarCat', 'marcat')","Marine biology, Microbiology, Metagenomics, Data mining"
PMC5753341,"For MarCat, the marine metagenomics gene catalogue, target information can be obtained from other databases such as UniProt, InterPro and Brenda.",FALSE,FALSE,"(4, 10, 'MarCat', 'marcat')","Marine biology, Microbiology, Metagenomics, Data mining"
PMC5753341,"For samples in the MarCat database, all predicted 16 S sequences and assembled contigs in FASTA format can be downloaded.",FALSE,FALSE,"(19, 25, 'MarCat', 'marcat')","Marine biology, Microbiology, Metagenomics, Data mining"
PMC5753341,"In addition, we aim to include metatranscriptomics data to enhance the quality of the MarCat.",FALSE,FALSE,"(86, 92, 'MarCat', 'marcat')","Marine biology, Microbiology, Metagenomics, Data mining"
PMC5753341,For MarCat we intend to include metadata fields for the provenance of analysis according to the recommendation by Hoopen et al.,FALSE,FALSE,"(4, 10, 'MarCat', 'marcat')","Marine biology, Microbiology, Metagenomics, Data mining"
PMC10580933,We trained both models using metagenomic reads simulated from marine microbial genomes in the MarRef database.,FALSE,FALSE,"(94, 100, 'MarRef', 'marref')","Marine biology, Microbiology, Genomics, Data mining"
PMC10580933,"The performance of both models (accuracy, precision, and percent microbe predicted) was compared with the standard taxonomic classification tool Kraken2 using 10 complex metagenomic data sets simulated from MarRef.",FALSE,FALSE,"(207, 213, 'MarRef', 'marref')","Marine biology, Microbiology, Genomics, Data mining"
PMC10580933,"Taxonomic and sequence data from version 1.6 of the MarRef database (24, 25) was used both to simulate metagenomic reads for taxonomic classification and as a source of artificial marine metagenomes for model training, testing, and validation.",FALSE,FALSE,"(52, 58, 'MarRef', 'marref')","Marine biology, Microbiology, Genomics, Data mining"
PMC10580933,"MarRef is a manually curated marine microbial reference database containing fully sequenced genomes (24, 25).",FALSE,FALSE,"(0, 6, 'MarRef', 'marref')","Marine biology, Microbiology, Genomics, Data mining"
PMC10580933,"A total of 1,271 genomes of marine prokaryotic species were retrieved from MarRef to develop the training, testing, and validation data sets.",FALSE,FALSE,"(75, 81, 'MarRef', 'marref')","Marine biology, Microbiology, Genomics, Data mining"
PMC10580933,"For each genome, we extracted the Genome Taxonomy Database (GTDB) (26) genus and species classification from the MarRef database’s metadata file.",FALSE,FALSE,"(113, 119, 'MarRef', 'marref')","Marine biology, Microbiology, Genomics, Data mining"
PMC10580933,"Of the 1,271 MarRef genomes, four records had undefined GTDB taxonomy due to failed quality checks and were dropped from the data set.",FALSE,FALSE,"(13, 19, 'MarRef', 'marref')","Marine biology, Microbiology, Genomics, Data mining"
PMC10580933,"For performance comparison, the default parameters of CAMISIM v1.3 (28) were used to perform 10 separate read simulations from the 1,267 MarRef genomes, with random seeds different from those used in the training and testing sets.",FALSE,FALSE,"(137, 143, 'MarRef', 'marref')","Marine biology, Microbiology, Genomics, Data mining"
PMC10580933,(1) Full-length genome records and their metadata were downloaded from MarRef v1.6.,FALSE,FALSE,"(71, 77, 'MarRef', 'marref')","Marine biology, Microbiology, Genomics, Data mining"
PMC10580933,"(4) Blind data sets were created using CAMISIM, which randomly generates metagenomic data sets from the MarRef genomes.",FALSE,FALSE,"(104, 110, 'MarRef', 'marref')","Marine biology, Microbiology, Genomics, Data mining"
PMC10580933,Kraken2 v2.1.2 was used to assign taxonomy to metagenomic reads in the blind data sets using MarRef v1.6 as the reference database.,FALSE,FALSE,"(93, 99, 'MarRef', 'marref')","Marine biology, Microbiology, Genomics, Data mining"
PMC10580933,"Bowtie2 v2.4.5’s bowtie-build command was used to generate a reference database containing all 1,267 MarRef genomes from the training set.",FALSE,FALSE,"(101, 107, 'MarRef', 'marref')","Marine biology, Microbiology, Genomics, Data mining"
PMC10580933,Our shell script can be found at https://github.com/helloftroy/MarRef_DeepMicrobes.,FALSE,FALSE,"(63, 69, 'MarRef', 'marref')","Marine biology, Microbiology, Genomics, Data mining"
PMC10580933,"We benchmarked the performance of our best-performing species and genus classification models (S-2E, S-3E, G-2E, G-3E; species 2 and 3 epoch, genus 2 and 3 epoch) against Kraken2 using 10 simulated blind metagenomes that contain random proportions of reads from the MarRef genomes.",FALSE,FALSE,"(266, 272, 'MarRef', 'marref')","Marine biology, Microbiology, Genomics, Data mining"
PMC10580933,Our results suggest that the DeepMicrobes marine (MarRef)-trained model showed lower accuracy than the prior human gut model (0.65 vs 0.96).,FALSE,FALSE,"(50, 56, 'MarRef', 'marref')","Marine biology, Microbiology, Genomics, Data mining"
PMC10580933,(e) Genomic data comparison between HGR and MarRef genomes.,FALSE,FALSE,"(44, 50, 'MarRef', 'marref')","Marine biology, Microbiology, Genomics, Data mining"
PMC10580933,"Notably, all genomes mispredicted for the genus models have only one representative genome in MarRef for the model to train on; many also have long genome length and high GC content.",FALSE,FALSE,"(94, 100, 'MarRef', 'marref')","Marine biology, Microbiology, Genomics, Data mining"
PMC10580933,"To evaluate whether performance differences between the DeepMicrobes gut and marine models was affected by the input genomes, we compared the HGR and MarRef data sets used for training.",FALSE,FALSE,"(150, 156, 'MarRef', 'marref')","Marine biology, Microbiology, Genomics, Data mining"
PMC10580933,We noticed average genome size in the MarRef data set was larger than the average genome size in the HGR data set (4.1 vs 2.5 Mbp).,FALSE,FALSE,"(38, 44, 'MarRef', 'marref')","Marine biology, Microbiology, Genomics, Data mining"
PMC10580933,"However, the average number of genomes represented in each genus was lower than the MarRef data set compared to the HGR data set (3.1 vs 20.7) (Fig.",FALSE,FALSE,"(84, 90, 'MarRef', 'marref')","Marine biology, Microbiology, Genomics, Data mining"
PMC10580933,"Lastly, we observed that though the average GC content was similar between both database genomes (0.48), many MarRef genus with <0.5 MCC had high GC content (0.52–0.72).",FALSE,FALSE,"(110, 116, 'MarRef', 'marref')","Marine biology, Microbiology, Genomics, Data mining"
PMC10580933,ResNet architecture results for all models using sample of MarRef genomes.,FALSE,FALSE,"(59, 65, 'MarRef', 'marref')","Marine biology, Microbiology, Genomics, Data mining"
PMC10580933,"Jupyter Notebooks used to create figures and analyze datasetsdata sets, along with shell scripts to run DeepMicrobes, Bowtie2, CAMISIM, and other program code can be found at MarRef_DeepMicrobes.",FALSE,FALSE,"(175, 181, 'MarRef', 'marref')","Marine biology, Microbiology, Genomics, Data mining"
PMC11124354,"A dataset of cold-adapted bacterial genome sequences was generated based on the five databases MarRef v.1.7, MarDB v.1.6, Ocean Microbiomics Database (OMD) v.1.1, BacDive (https://bacdive.dsmz.de/ (accessed on 23 January 2023)), and TEMPURA (http://togodb.org/db/tempura (accessed on 4 April 2023)).",FALSE,FALSE,"(109, 114, 'MarDB', 'mardb')","Marine biology, Microbiology, Genomics, Data mining"
PMC11124354,"Filtering from MarDB, MarRef, and OMD databases was primarily focused on isolation location.",FALSE,FALSE,"(15, 20, 'MarDB', 'mardb')","Marine biology, Microbiology, Genomics, Data mining"
PMC11124354,"All genomes from MarRef and MarDB bacteria classified as mesophilic, thermotolerant, and thermophilic were excluded, as well as those bacteria isolated from homoiotherms and hydrothermal vents.",FALSE,FALSE,"(28, 33, 'MarDB', 'mardb')","Marine biology, Microbiology, Genomics, Data mining"
PMC11124354,"All remaining genomes, including the metagenome-assembled genomes (MAGs) from MarDB and OMD databases, were quality assessed using CheckM (v1.2.2) [41].",FALSE,FALSE,"(78, 83, 'MarDB', 'mardb')","Marine biology, Microbiology, Genomics, Data mining"
PMC11124354,"The genomes of interest from MarRef (N = 86), MarDB (N = 225), OMD (N = 299), BacDive (N = 305), and TEMPURA (N = 25) were downloaded from the respective databases using their provided application programming interfaces (APIs) or download portals.",FALSE,FALSE,"(46, 51, 'MarDB', 'mardb')","Marine biology, Microbiology, Genomics, Data mining"
PMC11124354,"To map antiphage defense systems in cold-adapted bacteria, we generated a dataset of assembled genomes of bacteria that were considered cold-adapted either based on isolation location (MarRef, MarDB, and OMD databases) or experimental temperature growth data (BacDive and TEMPURA databases).",FALSE,FALSE,"(193, 198, 'MarDB', 'mardb')","Marine biology, Microbiology, Genomics, Data mining"
PMC4847265,"Here, we present a different approach, relying on tightly integrated method rather than “Wiki-based” method, to support community annotation and user collaboration in the Integrated Microbial Genomes (IMG) system.",FALSE,FALSE,"(171, 205, 'Integrated Microbial Genomes (IMG)', 'img')","Virology, Microbial ecology, Genomics, Metagenomics, Comparative genomics"
PMC4718670,"Here we present an automated tool, called iMet-Q (intelligent Metabolomic Quantitation), for label-free metabolomics quantitation from high-throughput MS1 data.",FALSE,FALSE,"(42, 48, 'iMet-Q', 'imet-q')",Metabolomics
PMC4718670,"By performing peak detection and peak alignment, iMet-Q provides a summary of quantitation results and reports ion abundance at both replicate level and sample level.",FALSE,FALSE,"(49, 55, 'iMet-Q', 'imet-q')",Metabolomics
PMC4718670,An in-house standard mixture and a public Arabidopsis metabolome data set were analyzed by iMet-Q.,FALSE,FALSE,"(91, 97, 'iMet-Q', 'imet-q')",Metabolomics
PMC4718670,"From the mixture data set, seven standard metabolites were detected by the four quantitation tools, for which iMet-Q had a smaller quantitation error of 12% in both profile and centroid data sets.",FALSE,FALSE,"(110, 116, 'iMet-Q', 'imet-q')",Metabolomics
PMC4718670,"With the isotope ratios calculated by iMet-Q, 49% (89 out of 183) metabolite candidates were filtered out.",FALSE,FALSE,"(38, 44, 'iMet-Q', 'imet-q')",Metabolomics
PMC4718670,"From the public Arabidopsis data set reported with two internal standards and 167 elucidated metabolites, iMet-Q detected all of the peaks corresponding to the internal standards and 167 metabolites.",FALSE,FALSE,"(106, 112, 'iMet-Q', 'imet-q')",Metabolomics
PMC4718670,iMet-Q provides user-friendly interfaces and is publicly available for download at http://ms.iis.sinica.edu.tw/comics/Software_iMet-Q.html.,FALSE,FALSE,"(0, 6, 'iMet-Q', 'imet-q')",Metabolomics
PMC4718670,"To rectify the above concerns, we develop a quantitation tool, called iMet-Q (intelligent Metabolomic Quantitation), written in C# programming language, which provides highly accurate quantitation and user-friendly graphical interfaces.",FALSE,FALSE,"(70, 76, 'iMet-Q', 'imet-q')",Metabolomics
PMC4718670,"For peak detection, iMet-Q requires one input parameter, i.e., mzWidth (defined as the width of a peak in m/z dimension), and calculates the full width at half maximum (FWHM) of a peak to dynamically determine its chromatographic width so that the peak boundary can be automatically determined (i.e., without requiring parameter input).",FALSE,FALSE,"(20, 26, 'iMet-Q', 'imet-q')",Metabolomics
PMC4718670,"Once the charge state is determined, iMet-Q calculates its isotope ratio (i.e., the ratio of the second isotope abundance to the monoisotope abundance) to facilitate metabolite identification.",FALSE,FALSE,"(37, 43, 'iMet-Q', 'imet-q')",Metabolomics
PMC4718670,"Since metabolites usually have smaller retention time drifts across LC-MS technical replicates, iMet-Q first aligns peaks across different LC-MS replicates of a sample and then across different samples.",FALSE,FALSE,"(96, 102, 'iMet-Q', 'imet-q')",Metabolomics
PMC4718670,"We used two metabolite data sets, an in-house standard mixture and a public Arabidopsis metabolome data set [28], to evaluate the performance of iMet-Q and compare it with three public quantitation tools, including XCMS, MetAlign, and MZmine2.",FALSE,FALSE,"(145, 151, 'iMet-Q', 'imet-q')",Metabolomics
PMC4718670,"As a result, iMet-Q had small quantitation error of 12% in both profile and centroid data sets.",FALSE,FALSE,"(13, 19, 'iMet-Q', 'imet-q')",Metabolomics
PMC4718670,"For the public Arabidopsis metabolome data set reported with two internal standards and 167 elucidated metabolites, iMet-Q detected the internal standards from all replicates and samples.",FALSE,FALSE,"(116, 122, 'iMet-Q', 'imet-q')",Metabolomics
PMC4718670,"In addition, all of the 167 metabolites were also detected by iMet-Q, whereas 103 (62%), 145 (87%), and 129 (77%) elucidated metabolites were detected by XCMS, MetAlign, and MZmine 2, respectively.",FALSE,FALSE,"(62, 68, 'iMet-Q', 'imet-q')",Metabolomics
PMC4718670,"Comparing with the three quantitation tools, iMet-Q had relatively small abundance variations (≤0.19) when quantifying the internal standards, and had higher abundance correlation (≥0.92) when quantifying the 167 metabolites across replicates.",FALSE,FALSE,"(45, 51, 'iMet-Q', 'imet-q')",Metabolomics
PMC4718670,The source code of iMet-Q is freely available on SourceForge (http://sourceforge.net/projects/imet-q/?source=navbar) under the license of GPL2.,FALSE,FALSE,"(19, 25, 'iMet-Q', 'imet-q')",Metabolomics
PMC4718670,"iMet-Q automatically skipped centroiding step when processing the centroid data set and used the following parameter setting: mzWidth = 0.02, mzTol = 0.02, and rtTol = 0.2 for both data sets.",FALSE,FALSE,"(0, 6, 'iMet-Q', 'imet-q')",Metabolomics
PMC4718670,"Public Arabidopsis data set was processed by iMet-Q with mzWidth, mzTol, and rtTol of 0.03, 0.03, and 0.16 min, respectively.",FALSE,FALSE,"(45, 51, 'iMet-Q', 'imet-q')",Metabolomics
PMC4718670,"In order to process data from various mass spectrometers, iMet-Q accepts input files in netCDF, mzXML, and mzML formats, which can be conveniently converted from raw data by existing converters.",FALSE,FALSE,"(58, 64, 'iMet-Q', 'imet-q')",Metabolomics
PMC4718670,"The workflow of iMet-Q contains two main tasks, peak detection and peak alignment, as depicted in Fig 1.",FALSE,FALSE,"(16, 22, 'iMet-Q', 'imet-q')",Metabolomics
PMC4718670,"To compare compounds across different samples, iMet-Q aligns the detected peaks in the peak lists according to their m/z and retention time.",FALSE,FALSE,"(47, 53, 'iMet-Q', 'imet-q')",Metabolomics
PMC4718670,"If the input files have already been centroided, iMet-Q automatically skips this step.",FALSE,FALSE,"(49, 55, 'iMet-Q', 'imet-q')",Metabolomics
PMC4718670,"Instead of determining a fixed baseline for each spectrum, iMet-Q equally divides a scan into s segments (s = 10 by default) with an overlap of 20% to avoid borderline issues and defines the average intensity in a segment as its noise level.",FALSE,FALSE,"(59, 65, 'iMet-Q', 'imet-q')",Metabolomics
PMC4718670,"After processing signals in each scan, iMet-Q uses a two-stage algorithm to construct the extracted ion chromatogram (EIC) of a compound.",FALSE,FALSE,"(39, 45, 'iMet-Q', 'imet-q')",Metabolomics
PMC4718670,"In signal clustering, starting from the most intensive signal, say sij, among all scans in S, iMet-Q clusters signals in S with sij if the m/z differences between the signals and sij are within the given tolerance d, i.e., mzWidth in iMet-Q.",FALSE,FALSE,"(94, 100, 'iMet-Q', 'imet-q')",Metabolomics
PMC4718670,"In the step of EIC boundary determination, iMet-Q automatically calculates FWHM and then dynamically determines the boundaries using FWHM.",FALSE,FALSE,"(43, 49, 'iMet-Q', 'imet-q')",Metabolomics
PMC4718670,"In order to determine the charge state and isotope ratio, iMet-Q first constructs an isotope envelope for a peak.",FALSE,FALSE,"(58, 64, 'iMet-Q', 'imet-q')",Metabolomics
PMC4718670,"Then, to validate the correctness of the isotope envelope, iMet-Q calculates the peak shape similarity between the monoisotope peak and the second isotope peak by using the dot product as shown below: Similarity=∑i=1nxiyi∑i=1nxi2∑i=1nyi2(1) where n is the number of scans that both the monoisotope peak and the second isotope peak co-occur, and xi and yi are their respective signal intensities in the ith scan.",FALSE,FALSE,"(59, 65, 'iMet-Q', 'imet-q')",Metabolomics
PMC4718670,"By performing the above peak detection procedures, iMet-Q generates a peak list with charge state and isotope ratio information for each input replicate file.",FALSE,FALSE,"(51, 57, 'iMet-Q', 'imet-q')",Metabolomics
PMC4718670,"For an input data set with multiple samples (each probably with multiple technical replicates), iMet-Q performs the same algorithm for pair-wise alignment within a sample (i.e., aligning replicates) and then across samples.",FALSE,FALSE,"(96, 102, 'iMet-Q', 'imet-q')",Metabolomics
PMC4718670,iMet-Q first selects the peak list that contains the largest number of detected peaks as the reference list and aligns other peak lists to it.,FALSE,FALSE,"(0, 6, 'iMet-Q', 'imet-q')",Metabolomics
PMC4718670,"For a pair of reference list and aligning peak list, iMet-Q uses peaks detected in both lists with their m/z and retention time differences within user-defined tolerances (i.e., mzTol and rtTol in iMet-Q) as landmarks [34].",FALSE,FALSE,"(53, 59, 'iMet-Q', 'imet-q')",Metabolomics
PMC4718670,"Given the retention time of landmarks in the reference list and in the aligning peak list as vectors A and B, respectively, iMet-Q uses LOESS regression [26, 27] to generate a mapping between A and B with span of 20% and weight of 1 since LOESS regression combines multiple linear least square regression models which fit localized subsets of the data.",FALSE,FALSE,"(124, 130, 'iMet-Q', 'imet-q')",Metabolomics
PMC4718670,iMet-Q then aligns the peaks in both peak lists that satisfy user-defined m/z tolerance and retention time tolerance based on adjusted retention time.,FALSE,FALSE,"(0, 6, 'iMet-Q', 'imet-q')",Metabolomics
PMC4718670,"In addition to viewing quantitation results in the main interface, iMet-Q reports the medians of m/z, retention time and abundance of the peaks in all replicates of all samples.",FALSE,FALSE,"(67, 73, 'iMet-Q', 'imet-q')",Metabolomics
PMC4718670,"For the charge state of an aligned peak, iMet-Q displays the charge state that is detected in most replicates.",FALSE,FALSE,"(41, 47, 'iMet-Q', 'imet-q')",Metabolomics
PMC4718670,"For the isotope ratio, iMet-Q collects the isotope ratios corresponding to the displayed charge state and reports the median as the isotope ratio.",FALSE,FALSE,"(23, 29, 'iMet-Q', 'imet-q')",Metabolomics
PMC4718670,"We evaluated the performance of iMet-Q in metabolite quantitation by comparing the accuracy of detecting metabolites and the abundance consistency, calculated by Pearson product-moment correlation coefficient (PPMCC), of detected metabolites among replicates with XCMS, MetAlign, and MZmine 2 using samples ranging from a small standard data set (seven standard metabolites) to a complex biological data set (public Arabidopsis data set).",FALSE,FALSE,"(32, 38, 'iMet-Q', 'imet-q')",Metabolomics
PMC4718670,We also demonstrated the ability of iMet-Q on charge state determination and isotope ratio calculation.,FALSE,FALSE,"(36, 42, 'iMet-Q', 'imet-q')",Metabolomics
PMC4718670,"To demonstrate the ability of iMet-Q, we used a standard metabolite mixture in which seven standard metabolites with different sample concentration in two samples were included for evaluation.",FALSE,FALSE,"(30, 36, 'iMet-Q', 'imet-q')",Metabolomics
PMC4718670,"Both profile and centroid data sets generated from the raw data were processed by iMet-Q, XCMS, MetAlign, and MZmine 2, respectively.",FALSE,FALSE,"(82, 88, 'iMet-Q', 'imet-q')",Metabolomics
PMC4718670,"As shown in Table 1, iMet-Q, XCMS, and MZmine 2 had the average quantitation error of 12%, 12% and 13% on the profile data set, and 12%, 32% and 14% on the centroid data set.",FALSE,FALSE,"(21, 27, 'iMet-Q', 'imet-q')",Metabolomics
PMC4718670,"The results showed that iMet-Q achieved the smallest quantitation errors and also had the same average quantitation error of 12% in both profile and centroid data set, suggesting the robustness of iMet-Q on processing input files in both data type.",FALSE,FALSE,"(24, 30, 'iMet-Q', 'imet-q')",Metabolomics
PMC4718670,"In addition to accurate quantitation, iMet-Q determined the charge state and isotope ratio of detected peaks.",FALSE,FALSE,"(38, 44, 'iMet-Q', 'imet-q')",Metabolomics
PMC4718670,"In order to evaluate the charge state determined by iMet-Q, we used CAMERA to annotate charge states and isotope peaks of the standard metabolites.",FALSE,FALSE,"(52, 58, 'iMet-Q', 'imet-q')",Metabolomics
PMC4718670,Charge states and isotope peaks of the seven standard metabolites in both profile and centroid data sets annotated by iMet-Q were overall identical with CAMERA’s annotation.,FALSE,FALSE,"(118, 124, 'iMet-Q', 'imet-q')",Metabolomics
PMC4718670,"Using iMet-Q’s calculated isotope ratios (the isotope ratio tolerance is ±0.02) to filter out unnecessary metabolite candidates, we reduced 49% (89 out of 183) metabolite candidates (S6 Table).",FALSE,FALSE,"(6, 12, 'iMet-Q', 'imet-q')",Metabolomics
PMC4718670,The public Arabidopsis data of 36 distinct samples collected from eight different plant classes (classified by Matsuda et al.) was used to demonstrate iMet-Q’s performance on quantifying complex biological samples.,FALSE,FALSE,"(151, 157, 'iMet-Q', 'imet-q')",Metabolomics
PMC4718670,"Table 2 shows the reproducibility and normalized abundances of two internal standards detected by the four quantitation tools, where iMet-Q, XCMS, and MetAlign detected all the internal standards from each replicate, achieving 100% reproducibility, slightly better than MZmine 2.",FALSE,FALSE,"(133, 139, 'iMet-Q', 'imet-q')",Metabolomics
PMC4718670,"Furthermore, iMet-Q reported normalized abundances of 1±0.19 and 1±0.18 for the two standard metabolites, comparable to the best 1±0.18 reported by XCMS and MZmine 2 for Lidocaine and the best 1±0.17 reported by XCMS for Camphor-10-sulfonic acid.",FALSE,FALSE,"(13, 19, 'iMet-Q', 'imet-q')",Metabolomics
PMC4718670,"As a result, iMet-Q detected all of the elucidated metabolites, whereas XCMS, MetAlign, and MZmine 2 detected 103 (62%), 145 (87%), and 129 (77%) of the elucidated metabolites, respectively.",FALSE,FALSE,"(13, 19, 'iMet-Q', 'imet-q')",Metabolomics
PMC4718670,"As a result, iMet-Q achieved an average replicate abundance correlation of 0.92, whereas XCMS, MetAlign, and MZmine 2 achieved average abundance correlations of 0.87, 0.78, and 0.81, respectively (as shown in Fig 3).",FALSE,FALSE,"(13, 19, 'iMet-Q', 'imet-q')",Metabolomics
PMC4718670,The result revealed that iMet-Q not only achieved high accuracy on detecting the 167 elucidated metabolites but also provided very consistent quantitation result.,FALSE,FALSE,"(25, 31, 'iMet-Q', 'imet-q')",Metabolomics
PMC4718670,"The numbers of detected peaks in the combined quantitation results of iMet-Q, XCMS, MetAlign, and MZmine 2 were 13079, 7487, 37364, and 19394, respectively.",FALSE,FALSE,"(70, 76, 'iMet-Q', 'imet-q')",Metabolomics
PMC4718670,"The average abundance correlations of the eight plant classes using the combined quantitation results of iMet-Q, XCMS, MetAlign, and MZmine 2 were 0.71, 0.75, 0.65, and 0.59, respectively.",FALSE,FALSE,"(105, 111, 'iMet-Q', 'imet-q')",Metabolomics
PMC4718670,"Note that all the replicates of flower class, the best clustered plant class (blue color in Fig 4), were clustered using iMet-Q’s combined quantitation result, and the average abundance correlation of the flower class was 0.88.",FALSE,FALSE,"(121, 127, 'iMet-Q', 'imet-q')",Metabolomics
PMC4718670,"This evaluation implies that, although the numbers of peaks detected by MetAlign and MZmine 2 were much larger than those detected by iMet-Q and XCMS, peaks detected by iMet-Q and XCMS might be more essential for distinguishing plant classes.",FALSE,FALSE,"(134, 140, 'iMet-Q', 'imet-q')",Metabolomics
PMC4718670,We thus used the 19 confirmed metabolites to demonstrate the ability of iMet-Q.,FALSE,FALSE,"(72, 78, 'iMet-Q', 'imet-q')",Metabolomics
PMC4718670,"By calculating the abundance correlations between 19 metabolites and their in-source fragments, iMet-Q reported an abundance correlation of 0.94, whereas XCMS, MetAlign, and MZmine 2 reported abundance correlations of 0.61, 0.76, and 0.66, respectively (as shown in Fig 5).",FALSE,FALSE,"(96, 102, 'iMet-Q', 'imet-q')",Metabolomics
PMC4718670,This result revealed that the abundances of the 19 metabolites and their in-source fragments were accurately detected and calculated by iMet-Q.,FALSE,FALSE,"(136, 142, 'iMet-Q', 'imet-q')",Metabolomics
PMC4718670,"Furthermore, isotope ratios of 89.47% (17 out of 19) metabolites were accurately calculated by iMet-Q, with differences within 0.05 to the theoretical ratio (S12 Table).",FALSE,FALSE,"(95, 101, 'iMet-Q', 'imet-q')",Metabolomics
PMC4718670,"We particularly implemented iMet-Q as a project-oriented quantitation platform, allowing users to conveniently quantify, manage and compare a large number of data sets or quantitation results in Microsoft Windows series platform (including Windows 7, 8, and Windows Server 2008, 2012).",FALSE,FALSE,"(28, 34, 'iMet-Q', 'imet-q')",Metabolomics
PMC4718670,"To be specific, iMet-Q applies a tree structure to organize quantitation results, where each node represents a project and sub-nodes of a project represent the quantitation results (as shown in Fig 6).",FALSE,FALSE,"(16, 22, 'iMet-Q', 'imet-q')",Metabolomics
PMC4718670,iMet-Q provides three wizards to guide users easily executing the program as follows.,FALSE,FALSE,"(0, 6, 'iMet-Q', 'imet-q')",Metabolomics
PMC4718670,"Since multiple technical replicates may be conducted on a sample, iMet-Q pops up a table to guide users to group technical replicates by the sample.",FALSE,FALSE,"(66, 72, 'iMet-Q', 'imet-q')",Metabolomics
PMC4718670,"During quantitation, iMet-Q sequentially detects peaks from each replicate and then aligns those detected peaks across replicates/samples.",FALSE,FALSE,"(21, 27, 'iMet-Q', 'imet-q')",Metabolomics
PMC4718670,"To compare abundances across samples, iMet-Q hierarchically displays a quantitation result in the main interface, where the quantitation result is summarized in a summary table.",FALSE,FALSE,"(38, 44, 'iMet-Q', 'imet-q')",Metabolomics
PMC4718670,"In order to efficiently select peaks of interest in the summary table, iMet-Q provides a search function using the range of m/z, retention time, charge state, or isotope ratio to narrow down the peaks listed in the summary table.",FALSE,FALSE,"(71, 77, 'iMet-Q', 'imet-q')",Metabolomics
PMC4718670,"Therefore, in this paper, we introduced an intelligent quantitation tool, iMet-Q, which is capable of dynamically determining the peak widths in liquid chromatogram dimension without input parameter, and automatically performing isotope pattern assembly.",FALSE,FALSE,"(74, 80, 'iMet-Q', 'imet-q')",Metabolomics
PMC4718670,"In our evaluation, iMet-Q has the quantitation performance better than XCMS, MetAlign, and MZmine 2 on standard and large-scale metabolome data sets.",FALSE,FALSE,"(19, 25, 'iMet-Q', 'imet-q')",Metabolomics
PMC4718670,"Besides, iMet-Q provides both the charge states and isotope ratios of detected peaks.",FALSE,FALSE,"(9, 15, 'iMet-Q', 'imet-q')",Metabolomics
PMC4718670,"Although our evaluation demonstrates that the metabolite isotope ratios calculated by iMet-Q are close to the theoretical values, it is important to note that isotope ratio can be affected by noise interference, saturation effects and different experimental conditions [36, 37].",FALSE,FALSE,"(86, 92, 'iMet-Q', 'imet-q')",Metabolomics
PMC4718670,"In addition to providing accurate quantitation, charge state, and isotope ratios, iMet-Q is equipped with friendly user interfaces so that quantifying metabolites become an easy task.",FALSE,FALSE,"(82, 88, 'iMet-Q', 'imet-q')",Metabolomics
PMC4718670,The software program is now publicly available for download at http://ms.iis.sinica.edu.tw/comics/Software_iMet-Q.html.,FALSE,FALSE,"(107, 113, 'iMet-Q', 'imet-q')",Metabolomics
PMC8205298,We provide an R script for post-processing MSI data in the imzML community format (https://bitbucket.org/lababi/msi.r) and implemented the TrIQ in our open-source imaging software RmsiGUI (https://bitbucket.org/lababi/rmsigui/).,FALSE,FALSE,"(180, 187, 'RmsiGUI', 'rmsigui')","Proteomics experiment, Metabolomics, Imaging, Small molecules"
PMC8205298,"Default values for \documentclass[12pt]{minimal} \usepackage{amsmath} \usepackage{wasysym} \usepackage{amsfonts} \usepackage{amssymb} \usepackage{amsbsy} \usepackage{upgreek} \usepackage{mathrsfs} \setlength{\oddsidemargin}{-69pt} \begin{document} }{}k\end{document}k and \documentclass[12pt]{minimal} \usepackage{amsmath} \usepackage{wasysym} \usepackage{amsfonts} \usepackage{amssymb} \usepackage{amsbsy} \usepackage{upgreek} \usepackage{mathrsfs} \setlength{\oddsidemargin}{-69pt} \begin{document} }{}q\end{document}q in RmsiGUI are 100 and 98%, respectively.",FALSE,FALSE,"(530, 537, 'RmsiGUI', 'rmsigui')","Proteomics experiment, Metabolomics, Imaging, Small molecules"
PMC8205298,"Recently, we published an R-based platform for MSI data processing with a graphical user interface, RmsiGUI, which provides modules for the control of an open hardware imaging robot (Open LabBot), the processing of raw data, and the analysis of MSI data (Rosas-Román et al., 2020).",FALSE,FALSE,"(100, 107, 'RmsiGUI', 'rmsigui')","Proteomics experiment, Metabolomics, Imaging, Small molecules"
PMC8205298,We integrated the TrIQ algorithm into RmsiGUI and provide the R code snippets for facilitating its adoption into other programs.,FALSE,FALSE,"(38, 45, 'RmsiGUI', 'rmsigui')","Proteomics experiment, Metabolomics, Imaging, Small molecules"
PMC8205298,Figure 1 shows the graphical user interface of RmsiGUI with the TrIQ option selector.,FALSE,FALSE,"(47, 54, 'RmsiGUI', 'rmsigui')","Proteomics experiment, Metabolomics, Imaging, Small molecules"
PMC8205298,RmsiGUI is freely available from https://bitbucket.org/lababi/rmsigui/.,FALSE,FALSE,"(0, 7, 'RmsiGUI', 'rmsigui')","Proteomics experiment, Metabolomics, Imaging, Small molecules"
PMC8205298,"We released TrIQ R scripts and the R package RmsiGUI under the terms of the GNU General Public License, GPL V3 (http://gplv3.fsf.org/).",FALSE,FALSE,"(45, 52, 'RmsiGUI', 'rmsigui')","Proteomics experiment, Metabolomics, Imaging, Small molecules"
PMC8205298,The software RmsiGUI is freely available from https://bitbucket.org/lababi/rmsigui/.,FALSE,FALSE,"(13, 20, 'RmsiGUI', 'rmsigui')","Proteomics experiment, Metabolomics, Imaging, Small molecules"
PMC11305627,"A dual-chamber leadless pacemaker system has been designed for atrioventricular synchronous pacing using wireless, beat-to-beat, implant-to-implant (i2i) communication between distinct atrial and ventricular leadless pacemakers.",FALSE,FALSE,"(149, 152, 'i2i', 'ion-to-image')","Proteomics experiment, Imaging, Analytical chemistry"
PMC11305627,Atrium-to-ventricle and ventricle-to-atrium i2i communication success rates were also assessed.,FALSE,FALSE,"(44, 47, 'i2i', 'ion-to-image')","Proteomics experiment, Imaging, Analytical chemistry"
PMC11305627,"Post hoc summary statistics describing the relationships between atrioventricular synchrony and i2i success, posture/activity, implantation indication, atrioventricular event, and heart rate were calculated.",FALSE,FALSE,"(96, 99, 'i2i', 'ion-to-image')","Proteomics experiment, Imaging, Analytical chemistry"
PMC11305627,"In the evaluable population (n=384 of 464 enrolled [83%]; 61% male; age, 70 years; weight, 82 kg; 60% ejection fraction; 95% of beats evaluable), the mean atrioventricular synchrony of 98% of beats observed across all postures using the standard 300-millisecond limit was greater than both atrial-to-ventricular i2i (94%) and ventricular-to-atrial i2i (94%; P<0.001), exceeding both i2i values in 95% of patients.",FALSE,FALSE,"(312, 315, 'i2i', 'ion-to-image')","Proteomics experiment, Imaging, Analytical chemistry"
PMC11305627,"In addition, the relationship between atrioventricular synchrony and the implant-to-implant (i2i) communication needed to maintain it was evaluated.",FALSE,FALSE,"(93, 96, 'i2i', 'ion-to-image')","Proteomics experiment, Imaging, Analytical chemistry"
PMC11305627,"The dual-chamber LP consists of an atrial LP (ALP) and a ventricular LP (VLP; Figure 1A) that communicate bidirectionally and on a beat-to-beat basis to continually deliver atrioventricular synchronous pacing with a novel i2i communication modality.8 Transmissions are sent from ALP to VLP (A-to-V) and from VLP to ALP (V-to-A) immediately before each paced event and after each sensed event to avoid interference with noncommunication (ie, pacing) operations.",FALSE,FALSE,"(222, 225, 'i2i', 'ion-to-image')","Proteomics experiment, Imaging, Analytical chemistry"
PMC11305627,Examples of i2i communication are shown in Figure 1B.,FALSE,FALSE,"(12, 15, 'i2i', 'ion-to-image')","Proteomics experiment, Imaging, Analytical chemistry"
PMC11305627,"It is important to note that the i2i signal characteristics can be tuned to enhance transmission success using the i2i setting level, which incorporates the transmitting signal pulse amplitude, transmitting signal pulse duration, and receiving sensing threshold (range, 1–7; nominal, 4).",FALSE,FALSE,"(33, 36, 'i2i', 'ion-to-image')","Proteomics experiment, Imaging, Analytical chemistry"
PMC11305627,"B, Example of implant-to-implant, or i2i, communication messages for As-Vp and Ap-Vs event sequences.",FALSE,FALSE,"(37, 40, 'i2i', 'ion-to-image')","Proteomics experiment, Imaging, Analytical chemistry"
PMC11305627,"During successful bidirectional i2i communication, the system can function in DDD(R) mode.",FALSE,FALSE,"(32, 35, 'i2i', 'ion-to-image')","Proteomics experiment, Imaging, Analytical chemistry"
PMC11305627,"Persistent i2i communication interruption, however, could disrupt this harmony and result in delayed ventricular pacing or withheld atrial pacing.",FALSE,FALSE,"(11, 14, 'i2i', 'ion-to-image')","Proteomics experiment, Imaging, Analytical chemistry"
PMC11305627,"The system mitigates such asynchrony by monitoring the receipt of each transmission and automatically transitioning to 1 of 3 “safeguard modes.” If A-to-V i2i communication fails, the system effectively functions in DDI mode.",FALSE,FALSE,"(155, 158, 'i2i', 'ion-to-image')","Proteomics experiment, Imaging, Analytical chemistry"
PMC11305627,"In contrast, if V-to-A i2i communication fails, the system effectively functions in VDD mode.",FALSE,FALSE,"(23, 26, 'i2i', 'ion-to-image')","Proteomics experiment, Imaging, Analytical chemistry"
PMC11305627,"If i2i communication fails in both directions simultaneously, the system effectively functions in VDI mode.8 Collectively, these 3 safeguard modes guarantee ventricular pacing at the programmed rate during i2i interruption while providing atrial tracking and pacing whenever possible, despite changes in intrinsic rhythm or atrioventricular conduction.",FALSE,FALSE,"(3, 6, 'i2i', 'ion-to-image')","Proteomics experiment, Imaging, Analytical chemistry"
PMC11305627,"The atrioventricular synchrony that ultimately results from i2i, however, can be definitively assessed only by manually verifying atrial and ventricular activation timing through external electrocardiographic adjudication.",FALSE,FALSE,"(60, 63, 'i2i', 'ion-to-image')","Proteomics experiment, Imaging, Analytical chemistry"
PMC11305627,"Although such a manual assessment may not readily be feasible in a clinical implantation setting, the A-to-V and V-to-A i2i success rates (ie, i2i throughput, percent of transmissions sent that were successfully received) are device-based diagnostics that can be interrogated by the programmer.",FALSE,FALSE,"(120, 123, 'i2i', 'ion-to-image')","Proteomics experiment, Imaging, Analytical chemistry"
PMC11305627,"These i2i success rates can serve as feedback metrics, upstream from atrioventricular synchrony, to guide implantation site selection and provide LP communication monitoring.9",FALSE,FALSE,"(6, 9, 'i2i', 'ion-to-image')","Proteomics experiment, Imaging, Analytical chemistry"
PMC11305627,"LP diagnostics were cleared immediately before each posture period with the programmer (Merlin Patient Care System, Abbott), and LPs were interrogated after each posture period to determine interim i2i success rates.",FALSE,FALSE,"(198, 201, 'i2i', 'ion-to-image')","Proteomics experiment, Imaging, Analytical chemistry"
PMC11305627,"In addition to the acute posture/activity recordings collected in clinic at 3 months, out-of-clinic durations of all distinct instances of i2i communication interruption from 1 to 3 months were collected from device interrogations at 3 months.",FALSE,FALSE,"(139, 142, 'i2i', 'ion-to-image')","Proteomics experiment, Imaging, Analytical chemistry"
PMC11305627,"The model was fit with 3-month atrioventricular synchrony as the outcome and the following linear predictors with no associations: i2i success (A-to-V and V-to-A), posture/activity, pacing indication, mean heart rate, RA implantation site, RV implantation site, and atrioventricular event (percent Ap and percent Vp).",FALSE,FALSE,"(131, 134, 'i2i', 'ion-to-image')","Proteomics experiment, Imaging, Analytical chemistry"
PMC11305627,"To evaluate the relationship between i2i communication success and the resulting atrioventricular synchrony, each metric was calculated as the mean across all completed postures for each patient.",FALSE,FALSE,"(37, 40, 'i2i', 'ion-to-image')","Proteomics experiment, Imaging, Analytical chemistry"
PMC11305627,"Over the analyzed patient population (N=384), the resulting mean success rates for atrioventricular synchrony, A-to-V i2i, and V-to-A i2i were 98.1% (95% CI, 96.7–99.4) of beats, 93.6% (95% CI, 91.2–96.1) of transmissions, and 94.1% (95% CI, 91.7–96.4) of transmissions, respectively, as shown in Figure 2A.",FALSE,FALSE,"(118, 121, 'i2i', 'ion-to-image')","Proteomics experiment, Imaging, Analytical chemistry"
PMC11305627,"These i2i rates were achieved with mean programmed A-to-V and V-to-A i2i setting levels of 4.8±1.4 and 5.2±1.3 of 7, respectively.",FALSE,FALSE,"(6, 9, 'i2i', 'ion-to-image')","Proteomics experiment, Imaging, Analytical chemistry"
PMC11305627,"V-to-A i2i was statistically greater than A-to-V i2i (P<0.005), and it is important to note that atrioventricular synchrony was greater than both V-to-A i2i and A-to-V i2i (P<0.001 for both).",FALSE,FALSE,"(7, 10, 'i2i', 'ion-to-image')","Proteomics experiment, Imaging, Analytical chemistry"
PMC11305627,Relationship between atrioventricular (AV) synchrony and i2i transmission success.,FALSE,FALSE,"(57, 60, 'i2i', 'ion-to-image')","Proteomics experiment, Imaging, Analytical chemistry"
PMC11305627,"A, atrioventricular synchrony, Atrial-to-ventricular (A-to-V) implant-to-implant (i2i) success, and ventricular-to-atrial (V-to-A) i2i success, calculated from the mean percent of beats across all postures for each patient.",FALSE,FALSE,"(82, 85, 'i2i', 'ion-to-image')","Proteomics experiment, Imaging, Analytical chemistry"
PMC11305627,"B, Color-coded atrioventricular synchrony vs A-to-V i2i and V-to-A i2i.",FALSE,FALSE,"(52, 55, 'i2i', 'ion-to-image')","Proteomics experiment, Imaging, Analytical chemistry"
PMC11305627,"The impact of i2i communication interruption on atrioventricular synchrony can be visualized in Figure 2B, which shows that most outlier patients with atrioventricular synchrony of 70% to 90% (orange) or <70% (red) were associated with A-to-V or V-to-A i2i success rates <80%.",FALSE,FALSE,"(14, 17, 'i2i', 'ion-to-image')","Proteomics experiment, Imaging, Analytical chemistry"
PMC11305627,The ability of the device-based i2i values to ultimately serve as the lower bound of the resulting atrioventricular synchrony was revealed using the difference between atrioventricular synchrony and the lower of the V-to-A and A-to-V i2i values.,FALSE,FALSE,"(32, 35, 'i2i', 'ion-to-image')","Proteomics experiment, Imaging, Analytical chemistry"
PMC11305627,"Atrioventricular synchrony was 7.1 (95% CI, 4.6–9.7) mean absolute percentage points greater than the lower of the 2 i2i success rates for each patient.",FALSE,FALSE,"(117, 120, 'i2i', 'ion-to-image')","Proteomics experiment, Imaging, Analytical chemistry"
PMC11305627,"Overall, atrioventricular synchrony exceeded both i2i values in 94.5% of patients (363/384) and was no lower than 5% below the lower i2i value in 99.0% of patients (380/384).",FALSE,FALSE,"(50, 53, 'i2i', 'ion-to-image')","Proteomics experiment, Imaging, Analytical chemistry"
PMC11305627,The durations of distinct instances of i2i interruption were quantified for the out-of-clinic period before the 3-month atrioventricular synchrony assessment.,FALSE,FALSE,"(39, 42, 'i2i', 'ion-to-image')","Proteomics experiment, Imaging, Analytical chemistry"
PMC11305627,"From 1 to 3 months after implantation across all patients, 86.6% (95% CI, 82.5–90.7) of all instances of A-to-V i2i interruption and 96.8% (95% CI, 95.0–98.7) of all instances of V-to-A i2i interruption were <6 seconds in duration; moreover, 98.9% (95% CI, 97.7–100.0) and 98.9% (95% CI, 97.8–100.0) of all instances of A-to-V and V-to-A interruption, respectively, were <30 seconds in duration.",FALSE,FALSE,"(112, 115, 'i2i', 'ion-to-image')","Proteomics experiment, Imaging, Analytical chemistry"
PMC11305627,"Specifically, posture/activity, A-to-V i2i success, V-to-A i2i success, percent Ap, and percent Vp demonstrated a significant impact on atrioventricular synchrony (P<0.001), but pacing indication, heart rate, and implantation site did not.",FALSE,FALSE,"(39, 42, 'i2i', 'ion-to-image')","Proteomics experiment, Imaging, Analytical chemistry"
PMC11305627,"This first dual-chamber LP system maintains atrioventricular synchrony through a novel beat-to-beat, i2i communication channel.",FALSE,FALSE,"(101, 104, 'i2i', 'ion-to-image')","Proteomics experiment, Imaging, Analytical chemistry"
PMC11305627,"If 100% of such i2i transmissions are successful, atrioventricular synchrony would be observed in 100% of beats.",FALSE,FALSE,"(16, 19, 'i2i', 'ion-to-image')","Proteomics experiment, Imaging, Analytical chemistry"
PMC11305627,"During bouts of i2i communication interruption, novel safeguard algorithms provide dynamic shifts in pacing mode to minimize any resulting asynchrony.",FALSE,FALSE,"(16, 19, 'i2i', 'ion-to-image')","Proteomics experiment, Imaging, Analytical chemistry"
PMC11305627,"An important finding was that ≈99% of i2i interruption instances resolved within 30 seconds, when the system returns to DDD behavior before changes in atrial rate or PR interval are likely given an opportunity to disrupt atrioventricular synchrony.",FALSE,FALSE,"(38, 41, 'i2i', 'ion-to-image')","Proteomics experiment, Imaging, Analytical chemistry"
PMC11305627,"As a consequence of the safeguards, the fleeting nature of most i2i interruptions, and potential for intrinsic ventricular activation, atrioventricular synchrony should always meet or exceed i2i success in either direction, absent any confounding sensing or capture issues.",FALSE,FALSE,"(64, 67, 'i2i', 'ion-to-image')","Proteomics experiment, Imaging, Analytical chemistry"
PMC11305627,"Across a broad spectrum of patient implantation indications, postures, activities, heart rates, implantation sites, and atrioventricular event combinations in this patient population, A-to-V and V-to-A i2i transmissions were successful in 93.6% and 94.1% of beats, respectively, yet atrioventricular synchrony was achieved in 98.1% of beats.",FALSE,FALSE,"(202, 205, 'i2i', 'ion-to-image')","Proteomics experiment, Imaging, Analytical chemistry"
PMC11305627,"Moreover, atrioventricular synchrony exceeded both i2i success rates in 94.5% of patients and was no lower than 5% below both i2i values in 99.0% of patients.",FALSE,FALSE,"(51, 54, 'i2i', 'ion-to-image')","Proteomics experiment, Imaging, Analytical chemistry"
PMC11305627,"Note that the apparent patient anomalies in which the mean atrioventricular synchrony did not exceed mean i2i success rates (eg, 3 orange points in the upper-right corner of Figure 2B) were associated with atrioventricular synchrony values just under the 90% cutoff (ie, 88.8%, 87.0%, and 83.3%).",FALSE,FALSE,"(106, 109, 'i2i', 'ion-to-image')","Proteomics experiment, Imaging, Analytical chemistry"
PMC11305627,"Although atrioventricular synchrony can be definitively verified only by manual electrocardiographic adjudication, i2i success rates are device-based diagnostics that can be readily interrogated by the programmer and serve as a lower bound for atrioventricular synchrony estimation.",FALSE,FALSE,"(115, 118, 'i2i', 'ion-to-image')","Proteomics experiment, Imaging, Analytical chemistry"
PMC11305627,"Therefore, implantation site selection and subsequent device monitoring can be facilitated by using i2i success as a conservative surrogate for atrioventricular synchrony.",FALSE,FALSE,"(100, 103, 'i2i', 'ion-to-image')","Proteomics experiment, Imaging, Analytical chemistry"
PMC11305627,"Two previous preclinical ovine studies of this system’s i2i communication reported long-term A-to-V and V-to-A i2i transmission success rates exceeding 99%8 and atrioventricular synchrony exceeding 99% across a variety of postures/activities, similar to this clinical study.9 The slightly higher i2i success rates observed in those 2 preclinical studies may be attributed to differences in ovine compared with human intra-LP distances and orientations, which are anatomically constrained and may affect i2i signal reception.",FALSE,FALSE,"(56, 59, 'i2i', 'ion-to-image')","Proteomics experiment, Imaging, Analytical chemistry"
PMC11305627,"Successful i2i communication, which is verified intraprocedurally during implantation, could theoretically be hindered by the ambulatory postures, activities, and cardiovascular conduction scenarios associated with daily living.",FALSE,FALSE,"(11, 14, 'i2i', 'ion-to-image')","Proteomics experiment, Imaging, Analytical chemistry"
PMC11305627,"However, these anatomical LP locations may not fully capture the factors that can affect i2i communication and atrioventricular synchrony (eg, relative distance and orientation of the LPs) due to patient-to-patient differences in cardiac anatomy.",FALSE,FALSE,"(89, 92, 'i2i', 'ion-to-image')","Proteomics experiment, Imaging, Analytical chemistry"
PMC11305627,It is important to note that the i2i setting level can be manually adjusted beyond the automatic recommendations to achieve a patient-specific balance of i2i success and battery longevity.,FALSE,FALSE,"(33, 36, 'i2i', 'ion-to-image')","Proteomics experiment, Imaging, Analytical chemistry"
PMC11305627,"During atrial pacing, greater atrioventricular synchrony could result from the VLP maintaining both the V-A and V-V delays, despite transient A-to-V i2i interruption.",FALSE,FALSE,"(149, 152, 'i2i', 'ion-to-image')","Proteomics experiment, Imaging, Analytical chemistry"
PMC11305627,"In contrast, greater atrioventricular synchrony during ventricular sensing may be explained by its lack of dependence on A-to-V i2i communication to initiate the atrioventricular delay for timely ventricular activity when intact atrioventricular conduction was present.",FALSE,FALSE,"(128, 131, 'i2i', 'ion-to-image')","Proteomics experiment, Imaging, Analytical chemistry"
PMC11305627,This additional and more accurate quantification of true atrioventricular synchrony further illustrated the functionality of beat-to-beat i2i communication for true dual-chamber leadless pacing.,FALSE,FALSE,"(138, 141, 'i2i', 'ion-to-image')","Proteomics experiment, Imaging, Analytical chemistry"
PMC11305627,"However, the reasons for exclusion (eg, withdrawn consent, LP fixation, improper device programming, ECG signals with persistent noise or low amplitudes) were independent of i2i communication and thus not expected to bias the reported communication success or downstream atrioventricular synchrony.",FALSE,FALSE,"(174, 177, 'i2i', 'ion-to-image')","Proteomics experiment, Imaging, Analytical chemistry"
PMC11305627,"In addition, such out-of-clinic settings may also include environmental electrical noise that could potentially interfere with i2i communication.",FALSE,FALSE,"(127, 130, 'i2i', 'ion-to-image')","Proteomics experiment, Imaging, Analytical chemistry"
PMC11305627,"An evaluation of atrioventricular synchrony during ambulatory 24-hour Holter periods without programming restrictions or prescribed postures/activities should be the subject of future analyses, as should longer-term i2i communication performance.",FALSE,FALSE,"(216, 219, 'i2i', 'ion-to-image')","Proteomics experiment, Imaging, Analytical chemistry"
PMC11305627,Device-based i2i communication success diagnostics were within 5% of the assessed atrioventricular synchrony in 99% of patients and thus may serve as a lower-bound surrogate to an otherwise cumbersome manual atrioventricular synchrony measurement.,FALSE,FALSE,"(13, 16, 'i2i', 'ion-to-image')","Proteomics experiment, Imaging, Analytical chemistry"
PMC11305627,Nonstandard Abbreviations and AcronymsA-to-Vatrial to ventricular deviceALPatrial leadless pacemakeri2iimplant-to-implantLPleadless pacemakerRAright atrialRVright ventricleV-to-Aventricular to atrial deviceVLPventricular leadless pacemaker,FALSE,FALSE,"(101, 104, 'i2i', 'ion-to-image')","Proteomics experiment, Imaging, Analytical chemistry"
PMC10146746,"Alignment of the spectra was performed after the preprocessing step with MSIWarp, a Python package provided with C++ implementation.",FALSE,FALSE,"(73, 80, 'MSIWarp', 'msiwarp')","Proteomics experiment, Imaging, Structure analysis"
PMC10146746,MSIWarp is a flexible tool compatible with multiple instrument types to perform mass alignment of mass spectrometry imaging spectra [22].,FALSE,FALSE,"(0, 7, 'MSIWarp', 'msiwarp')","Proteomics experiment, Imaging, Structure analysis"
PMC10146746,"MSIWarp alignment significantly improved the performance of the CNN model, especially for the two machines that showed lower performances without alignment.",FALSE,FALSE,"(0, 7, 'MSIWarp', 'msiwarp')","Proteomics experiment, Imaging, Structure analysis"
PMC10146746,"Keeping the alignment with MSIWarp, we compared the results obtained on the three culture media per machine (Table 2).",FALSE,FALSE,"(27, 34, 'MSIWarp', 'msiwarp')","Proteomics experiment, Imaging, Structure analysis"
PMC10146746,"Keeping the alignment with MSIWarp, we compared the performances obtained after 24 h and 48 h of growth on two machines (MYCO-PSL and SAINT-ANTOINE).",FALSE,FALSE,"(27, 34, 'MSIWarp', 'msiwarp')","Proteomics experiment, Imaging, Structure analysis"
PMC10146746,Impact of the machine and of the alignment with MSIWarp.,FALSE,FALSE,"(48, 55, 'MSIWarp', 'msiwarp')","Proteomics experiment, Imaging, Structure analysis"
PMC5608769,We have developed massPix—an R package for analysing and interpreting data from MSI of lipids in tissue.,FALSE,FALSE,"(18, 25, 'massPix', 'masspix')","Proteomics experiment, Statistics and probability, Imaging, Metabolomics"
PMC5608769," massPix produces single ion images, performs multivariate statistics and provides putative lipid annotations based on accurate mass matching against generated lipid libraries.",FALSE,FALSE,"(1, 8, 'massPix', 'masspix')","Proteomics experiment, Statistics and probability, Imaging, Metabolomics"
PMC5608769," massPix is an open-source tool for the analysis and statistical interpretation of MSI data, and is particularly useful for lipidomics applications.",FALSE,FALSE,"(1, 8, 'massPix', 'masspix')","Proteomics experiment, Statistics and probability, Imaging, Metabolomics"
PMC5608769,"Here, we have developed massPix, an R-based package which processes MSI data, plots single ion distributions and performs multivariate statistics [principal components analysis (PCA) and clustering].",FALSE,FALSE,"(24, 31, 'massPix', 'masspix')","Proteomics experiment, Statistics and probability, Imaging, Metabolomics"
PMC5608769,massPix supports data in imzML format (Race et al.,FALSE,FALSE,"(1, 8, 'massPix', 'masspix')","Proteomics experiment, Statistics and probability, Imaging, Metabolomics"
PMC5608769,"Whilst massPix has been developed for high resolution matrix assisted laser desorption ionisation (MALDI) data acquired with Thermo Scientific instrumentation, the software is vendor agnostic and can be applied to any data in imzML format independent of mass spectrometry platform.",FALSE,FALSE,"(7, 14, 'massPix', 'masspix')","Proteomics experiment, Statistics and probability, Imaging, Metabolomics"
PMC5608769,"massPix is compatible with Windows, Mac and Linux operating systems, and requires at least sufficient RAM to load the entire experimental dataset into memory (for instance to process 3 GB image file, ~3.2 GB memory is used).",FALSE,FALSE,"(0, 7, 'massPix', 'masspix')","Proteomics experiment, Statistics and probability, Imaging, Metabolomics"
PMC5608769,"massPix is run from the R scripting interface, however a detailed knowledge of R is not required to install and use the software.",FALSE,FALSE,"(0, 7, 'massPix', 'masspix')","Proteomics experiment, Statistics and probability, Imaging, Metabolomics"
PMC5608769,"massPix outputs high quality images, a data frame of the final normalised and annotated image which can be further manipulated in R, and csv files for spectra corresponding to cluster centers, PCA loadings, and lipid annotations.",FALSE,FALSE,"(0, 7, 'massPix', 'masspix')","Proteomics experiment, Statistics and probability, Imaging, Metabolomics"
PMC5608769,"The massPix R package, all R scripts, library files and the imzML Converter are available on GitHub (https://github.com/hallz/massPix).",FALSE,FALSE,"(4, 11, 'massPix', 'masspix')","Proteomics experiment, Statistics and probability, Imaging, Metabolomics"
PMC5608769,MALDI–MSI is currently more widely used within the field and these datasets have been used to developed massPix.,FALSE,FALSE,"(104, 111, 'massPix', 'masspix')","Proteomics experiment, Statistics and probability, Imaging, Metabolomics"
PMC5608769,The overall data processing workflow followed by massPix is shown (b),FALSE,FALSE,"(49, 56, 'massPix', 'masspix')","Proteomics experiment, Statistics and probability, Imaging, Metabolomics"
PMC5608769,The overall data processing workflow followed by massPix is shown (b),FALSE,FALSE,"(49, 56, 'massPix', 'masspix')","Proteomics experiment, Statistics and probability, Imaging, Metabolomics"
PMC5608769,massPix has the further capability to perform difference matching on deisotoped features to search for mass differences associated with measurement-introduced alternation (e.g.,FALSE,FALSE,"(1, 8, 'massPix', 'masspix')","Proteomics experiment, Statistics and probability, Imaging, Metabolomics"
PMC5608769,massPix uses an unsupervised approach to classify pixels of high spectral similarity using PCA (Fig.,FALSE,FALSE,"(0, 7, 'massPix', 'masspix')","Proteomics experiment, Statistics and probability, Imaging, Metabolomics"
PMC5608769,The use of massPix software can thus aid interpretation of region-specific molecular changes.,FALSE,FALSE,"(11, 18, 'massPix', 'masspix')","Proteomics experiment, Statistics and probability, Imaging, Metabolomics"
PMC5608769,"Single ion distributions produced by massPix for [PC(36:1)+K]+, [PC(38:6)+K]+ , [PC(40:6)+K]+, in a sub-section of cerebellum (b).",FALSE,FALSE,"(37, 44, 'massPix', 'masspix')","Proteomics experiment, Statistics and probability, Imaging, Metabolomics"
PMC5608769,"Availability and implementation: The source code, R package, documentation and test data are freely available to download from https://github.com/hallz/massPix.",FALSE,FALSE,"(152, 159, 'massPix', 'masspix')","Proteomics experiment, Statistics and probability, Imaging, Metabolomics"
PMC5608769,massPix is distributed under the GNU General Public Licence (version 3).,FALSE,FALSE,"(0, 7, 'massPix', 'masspix')","Proteomics experiment, Statistics and probability, Imaging, Metabolomics"
PMC7953914,The International Wheat Information System (WheatIS) Expert Working Group (EWG) was initiated in 2012 under the Wheat Initiative with a broad range of contributing organizations.,FALSE,FALSE,"(44, 51, 'WheatIS', 'WheatIS')","Plant biology, Ecology, Biological databases, Bioinformatics, Agricultural science"
PMC7953914,"The mission of the WheatIS EWG was to create an informational infrastructure, establish data standards, and build a single portal that allows search, retrieval, and display of globally distributed wheat data sets that are indexed in standard data formats at servers around the world.",FALSE,FALSE,"(19, 26, 'WheatIS', 'WheatIS')","Plant biology, Ecology, Biological databases, Bioinformatics, Agricultural science"
PMC7953914,"The web portal at WheatIS.org was released publicly in 2015, and by 2020, it expanded to 8 geographically-distributed nodes and around 20 organizations under its umbrella.",FALSE,FALSE,"(18, 25, 'WheatIS', 'WheatIS')","Plant biology, Ecology, Biological databases, Bioinformatics, Agricultural science"
PMC7953914,"Realizing the importance of findability and accessibility of wheat data sets distributed around the world, the Wheat Information System (WheatIS) Expert Working Group was established in 2012 to develop data standards for the wheat community and enable data query and access to globally-distributed data sets in standardized formats.",FALSE,FALSE,"(137, 144, 'WheatIS', 'WheatIS')","Plant biology, Ecology, Biological databases, Bioinformatics, Agricultural science"
PMC7953914,"Three years after the inception of the WheatIS EWG, the WheatIS portal was made publicly available in 2015 through wheatis.org.",FALSE,FALSE,"(39, 46, 'WheatIS', 'WheatIS')","Plant biology, Ecology, Biological databases, Bioinformatics, Agricultural science"
PMC7953914,"Currently, the web portal is maintained at the University of Western Australia, Australia, and the portal WheatIS servers are located at the “Plant Bioinformatics Facility” hosted by URGI France.",FALSE,FALSE,"(106, 113, 'WheatIS', 'WheatIS')","Plant biology, Ecology, Biological databases, Bioinformatics, Agricultural science"
PMC7953914,"Only after 7 years, WheatIS “nodes,” i.e., servers that contain indexed and formatted data sets, proliferated and are currently distributed in 3 continents in 5 countries, demonstrating the buy-in from the wheat research communities ( Alaux et al., 2018; Blake et al., 2019; Scheben et al., 2019; Wilkinson et al., 2016b; Yuan et al., 2017).",FALSE,FALSE,"(20, 27, 'WheatIS', 'WheatIS')","Plant biology, Ecology, Biological databases, Bioinformatics, Agricultural science"
PMC7953914,Goals of WheatIS Expert Working Group.,FALSE,FALSE,"(10, 17, 'WheatIS', 'WheatIS')","Plant biology, Ecology, Biological databases, Bioinformatics, Agricultural science"
PMC7953914,"The Wheat Initiative tasked the WheatIS EWG’s to provide the international wheat research community with easy access to wheat genetics, phenotype with environmental information, genomic data and bioinformatics tools, and to support and promote the diverse wheat databases internationally.",FALSE,FALSE,"(32, 39, 'WheatIS', 'WheatIS')","Plant biology, Ecology, Biological databases, Bioinformatics, Agricultural science"
PMC7953914,"To help, the Wheat Data Interoperability Working Group (WDI-WG) was created as one of the Research Data Alliance working groups, under the umbrella of the WheatIS Expert Working Group.",FALSE,FALSE,"(155, 162, 'WheatIS', 'WheatIS')","Plant biology, Ecology, Biological databases, Bioinformatics, Agricultural science"
PMC7953914,"Some members belong to the WheatIS EWG, other have a more fundamental or transversal interest.",FALSE,FALSE,"(27, 34, 'WheatIS', 'WheatIS')","Plant biology, Ecology, Biological databases, Bioinformatics, Agricultural science"
PMC7953914,"To this date, no salary is provided to WheatIS EWG members or the members of their research groups to create or contribute to wheatis.org.",FALSE,FALSE,"(39, 46, 'WheatIS', 'WheatIS')","Plant biology, Ecology, Biological databases, Bioinformatics, Agricultural science"
PMC7953914,"This meager funding from the Wheat Initiative means that many people that are involved in the WheatIS EWG activities, such as curating data, building indexed data sets, configuring and maintaining servers, are doing these tasks on a volunteer basis in addition to their regular daily tasks.",FALSE,FALSE,"(94, 101, 'WheatIS', 'WheatIS')","Plant biology, Ecology, Biological databases, Bioinformatics, Agricultural science"
PMC7953914,"Fortunately, both computational and experimental research groups that are part of the WheatIS community recognize the primary importance of data availability, access, and sharing through wheatis.org, and because it is beneficial to the larger scientific community, they consider their service a crucial part of their scientific responsibility.",FALSE,FALSE,"(86, 93, 'WheatIS', 'WheatIS')","Plant biology, Ecology, Biological databases, Bioinformatics, Agricultural science"
PMC7953914,"The most significant accomplishment of the WheatIS EWG is the creation of a central hub, called WheatIS that provides a publicly available single-entry point.",FALSE,FALSE,"(43, 50, 'WheatIS', 'WheatIS')","Plant biology, Ecology, Biological databases, Bioinformatics, Agricultural science"
PMC7953914,"The WheatIS core server have access to resources at the globally-distributed nodes and enables data query and extraction through the web portal, unifying data discovery for the wheat research community.",FALSE,FALSE,"(4, 11, 'WheatIS', 'WheatIS')","Plant biology, Ecology, Biological databases, Bioinformatics, Agricultural science"
PMC7953914,"Specifically, the WheatIS portal was created to: 1) provide access to a data file repository storing files with their associated metadata; 2) allow queries to find data available in the WheatIS core and its nodes using keywords through a google-like search engine; 3) Data standards recommendations ( Dzale Yeumo et al., 2017); and 4) catalog several dedicated integrative databases that manage data types such as genomic, genetic, phenotypic, and functional genomic.",FALSE,FALSE,"(18, 25, 'WheatIS', 'WheatIS')","Plant biology, Ecology, Biological databases, Bioinformatics, Agricultural science"
PMC7953914,Current WheatIS searchable nodes.,FALSE,FALSE,"(9, 16, 'WheatIS', 'WheatIS')","Plant biology, Ecology, Biological databases, Bioinformatics, Agricultural science"
PMC7953914,"The following are the current organizations that manage a WheatIS server node: 1) the International Maize and Wheat Improvement Center CIMMYT (Mexico), 2) the European Bioinformatics Institute (EMBL-EBI) (UK), 3) the GrainGenes database (USA), 4) the Gramene database (USA), 5) the Triticeae Toolbox database (USA), 6) Transplant-IPGPAS (Poland), 7) l’Unité de Recherche Génomique Info (URGI) (France), and 8) wheatgenome.info at the University of Western Australia (Australia).",FALSE,FALSE,"(58, 65, 'WheatIS', 'WheatIS')","Plant biology, Ecology, Biological databases, Bioinformatics, Agricultural science"
PMC7953914,Rules of how to become a part of the WheatIS community.,FALSE,FALSE,"(38, 45, 'WheatIS', 'WheatIS')","Plant biology, Ecology, Biological databases, Bioinformatics, Agricultural science"
PMC7953914,"The WheatIS community is always expanding, adding new data sets and nodes from groups that never contributed data to wheatis.org.",FALSE,FALSE,"(4, 11, 'WheatIS', 'WheatIS')","Plant biology, Ecology, Biological databases, Bioinformatics, Agricultural science"
PMC7953914,"WheatIS contributing members provides know-how and support to those who would like to create and maintain their own WheatIS nodes at their locations or contribute data to WheatIS, a simple request to [email protected] will provide help and support.",FALSE,FALSE,"(0, 7, 'WheatIS', 'WheatIS')","Plant biology, Ecology, Biological databases, Bioinformatics, Agricultural science"
PMC7953914,"Our primary goal for the WheatIS Expert Working Group is to create a single portal that can query indexed data sets distributed worldwide, extract information, and provide access to these data sets to the wheat research community.",FALSE,FALSE,"(25, 32, 'WheatIS', 'WheatIS')","Plant biology, Ecology, Biological databases, Bioinformatics, Agricultural science"
PMC7953914,The size and types of data sets accessible at WheatIS are growing daily with more nodes being added.,FALSE,FALSE,"(46, 53, 'WheatIS', 'WheatIS')","Plant biology, Ecology, Biological databases, Bioinformatics, Agricultural science"
PMC7953914,"In all apparent measures, WheatIS is successful in building up a highly collaborative community of wheat research groups and creating a valuable product that is useful in connecting heterogenous data sets.",FALSE,FALSE,"(26, 33, 'WheatIS', 'WheatIS')","Plant biology, Ecology, Biological databases, Bioinformatics, Agricultural science"
PMC7953914,"In the case of WheatIS, the remarkable need to search, reach, and extract wheat data sets that are generated across the globe was a given among wheat scientists, and still energizes the community as more data sets are being generated with continually cheapening experimental technologies and computational power.",FALSE,FALSE,"(15, 22, 'WheatIS', 'WheatIS')","Plant biology, Ecology, Biological databases, Bioinformatics, Agricultural science"
PMC7953914,"In the case of WheatIS EWG, the formation of the Wheat Initiative by G20 ministers of agriculture instantly created such a supra-national umbrella organization.",FALSE,FALSE,"(15, 22, 'WheatIS', 'WheatIS')","Plant biology, Ecology, Biological databases, Bioinformatics, Agricultural science"
PMC7953914,"It is also important to mention that some members of the WheatIS EWG are also members of the maize, Brassica and rice communities and their contributions played a significant role in WheatIS’s success and in turn their experience in the WheatIS initiative are making an impact in their communities.",FALSE,FALSE,"(57, 64, 'WheatIS', 'WheatIS')","Plant biology, Ecology, Biological databases, Bioinformatics, Agricultural science"
PMC7953914,"It needed technical expertise to build and maintain a strong computational infrastructure and create data formats to make data sets readable; scientific expertise to understand different types of wheat data sets (including genetic, genomic, phenotypic, and metabolic); outreach capability to help build relationships to add new nodes with new data sets; and leaders who not only motivate and manage personnel, but also work with the Wheat Initiative and the broader wheat community to promote and support WheatIS.",FALSE,FALSE,"(505, 512, 'WheatIS', 'WheatIS')","Plant biology, Ecology, Biological databases, Bioinformatics, Agricultural science"
PMC7953914,"For WheatIS, or for any scientific community for that matter, the critical question is the type of the expertise needed and how much time the experts can devote to a fledgling community.",FALSE,FALSE,"(4, 11, 'WheatIS', 'WheatIS')","Plant biology, Ecology, Biological databases, Bioinformatics, Agricultural science"
PMC7953914,"When the WheatIS EWG was formed to create a single portal to make wheat data sets findable, accessible, and shareable ( Wilkinson et al., 2016a), the initial focus was primarily on the data sets.",FALSE,FALSE,"(9, 16, 'WheatIS', 'WheatIS')","Plant biology, Ecology, Biological databases, Bioinformatics, Agricultural science"
PMC7953914,"However, sharing data sets also lead to strengthening wheat communities as well, which happened for WheatIS working under the Wheat Initiative.",FALSE,FALSE,"(100, 107, 'WheatIS', 'WheatIS')","Plant biology, Ecology, Biological databases, Bioinformatics, Agricultural science"
PMC7953914,"Through WheatIS and through sharing data sets, WheatIS has evolved into a fledgling nexus for the other EWGs, a few in the beginning, and more later, to contribute to a single portal where any data points generated would be made accessible.",FALSE,FALSE,"(8, 15, 'WheatIS', 'WheatIS')","Plant biology, Ecology, Biological databases, Bioinformatics, Agricultural science"
PMC7953914,"Through this communication network, WheatIS is helping the Wheat Initiative to become a more cohesive group and facilitates future collaborations.",FALSE,FALSE,"(36, 43, 'WheatIS', 'WheatIS')","Plant biology, Ecology, Biological databases, Bioinformatics, Agricultural science"
PMC7953914,"Although the current graphical user interface for WheatIS is functional, it needs improvement in several areas.",FALSE,FALSE,"(50, 57, 'WheatIS', 'WheatIS')","Plant biology, Ecology, Biological databases, Bioinformatics, Agricultural science"
PMC7953914,"In the new interface, which we colloquially name WheatIS 2.0, we plan not only to work with the cosmetic issues, but also functional issues such as providing a more advanced and easy-to-use search capabilities.",FALSE,FALSE,"(49, 56, 'WheatIS', 'WheatIS')","Plant biology, Ecology, Biological databases, Bioinformatics, Agricultural science"
PMC7953914,The WheatIS 2.0 will be shaped in these and other specific areas that were identified through personal discussions in the EWG meetings and the feedback we received from actual users.,FALSE,FALSE,"(4, 11, 'WheatIS', 'WheatIS')","Plant biology, Ecology, Biological databases, Bioinformatics, Agricultural science"
PMC7953914,We first thank the “Wheat Information System Expert Working Group” (WheatIS EWG) members for their valuable input to build this infrastructure.,FALSE,FALSE,"(68, 75, 'WheatIS', 'WheatIS')","Plant biology, Ecology, Biological databases, Bioinformatics, Agricultural science"
PMC7953914,"We thank the Wheat Initiative led by Hélène Lucas, Peter Langridge and Frank Ordon that created a remarkable umbrella organization for WheatIS to thrive.",FALSE,FALSE,"(135, 142, 'WheatIS', 'WheatIS')","Plant biology, Ecology, Biological databases, Bioinformatics, Agricultural science"
PMC7953914,I wonder if they are planning to provide some data analytics or AI type of data prediction in WheatIS in the future.,FALSE,FALSE,"(95, 102, 'WheatIS', 'WheatIS')","Plant biology, Ecology, Biological databases, Bioinformatics, Agricultural science"
PMC7953914,"The manuscript described the process and successful experiences of forming an international research community, namely the international Wheat Information System (WheatIS) Expert working group.",FALSE,FALSE,"(163, 170, 'WheatIS', 'WheatIS')","Plant biology, Ecology, Biological databases, Bioinformatics, Agricultural science"
PMC7953914,"At the lowest level of quality check, when a new dataset is indexed at one of the nodes, the WheatIS system automatically checks its formatting, and if the dataset is not formatted correctly, it is not displayed through the web interface, and flagged for further quality check.",FALSE,FALSE,"(93, 100, 'WheatIS', 'WheatIS')","Plant biology, Ecology, Biological databases, Bioinformatics, Agricultural science"
PMC7953914," Although correct formatting and accurate display of the datasets are important, the most important criterion for indexing a dataset at WheatIS is primarily its scientific value for the WheatIS users.",FALSE,FALSE,"(136, 143, 'WheatIS', 'WheatIS')","Plant biology, Ecology, Biological databases, Bioinformatics, Agricultural science"
PMC7953914,The process of selecting and indexing datasets at the WheatIS nodes is crucial; every dataset available through the WheatIS framework needs to be high-quality.,FALSE,FALSE,"(54, 61, 'WheatIS', 'WheatIS')","Plant biology, Ecology, Biological databases, Bioinformatics, Agricultural science"
PMC7953914,"Therefore, all indexed datasets at WheatIS are required to be either peer-reviewed, manually curated by professional curators, or both.",FALSE,FALSE,"(35, 42, 'WheatIS', 'WheatIS')","Plant biology, Ecology, Biological databases, Bioinformatics, Agricultural science"
PMC7953914,Most datasets at WheatIS are the products of peer-reviewed scientific research with associated peer-reviewed publications.,FALSE,FALSE,"(17, 24, 'WheatIS', 'WheatIS')","Plant biology, Ecology, Biological databases, Bioinformatics, Agricultural science"
PMC7953914,"In addition to our ongoing volunteer efforts, we continuously look for new funding resources for WheatIS.",FALSE,FALSE,"(97, 104, 'WheatIS', 'WheatIS')","Plant biology, Ecology, Biological databases, Bioinformatics, Agricultural science"
PMC11223827,The PSIPRED Workbench is available at http://bioinf.cs.ucl.ac.uk/psipred.,FALSE,FALSE,"(4, 11, 'PSIPRED', 'psipred')","Structure prediction, Protein folds and structural domains, Protein secondary structure, Protein folding, stability and design, Protein structure analysis"
PMC11223827,The PSIPRED Workbench is part of a worldwide ecosystem of Bioscience data repositories and web services.,FALSE,FALSE,"(4, 11, 'PSIPRED', 'psipred')","Structure prediction, Protein folds and structural domains, Protein secondary structure, Protein folding, stability and design, Protein structure analysis"
PMC11223827,We have been developing the PSIPRED Workbench for nearly 25 years.,FALSE,FALSE,"(28, 35, 'PSIPRED', 'psipred')","Structure prediction, Protein folds and structural domains, Protein secondary structure, Protein folding, stability and design, Protein structure analysis"
PMC11223827,"Since 2019, we have published a number of new methods in the UCL Bioinformatics Group and have made some of these available online via the PSIPRED Workbench.",FALSE,FALSE,"(139, 146, 'PSIPRED', 'psipred')","Structure prediction, Protein folds and structural domains, Protein secondary structure, Protein folding, stability and design, Protein structure analysis"
PMC11223827,"Similarly to PSIPRED, S4PRED prediction results comprise a confidence score, a cartoon representation, 3-state prediction assignment, and the original amino acid sequence.",FALSE,FALSE,"(13, 20, 'PSIPRED', 'psipred')","Structure prediction, Protein folds and structural domains, Protein secondary structure, Protein folding, stability and design, Protein structure analysis"
PMC11223827,"This is a significant improvement over our cutting edge PSIPRED method, which achieves a Q3 accuracy of 70.6% when tested on single sequences without any provided homology information.",FALSE,FALSE,"(56, 63, 'PSIPRED', 'psipred')","Structure prediction, Protein folds and structural domains, Protein secondary structure, Protein folding, stability and design, Protein structure analysis"
PMC11223827,The PSIPRED Workbench offers a number of analysis methods.,FALSE,FALSE,"(4, 11, 'PSIPRED', 'psipred')","Structure prediction, Protein folds and structural domains, Protein secondary structure, Protein folding, stability and design, Protein structure analysis"
PMC11223827,Methods available via the PSIPRED workbench,FALSE,FALSE,"(26, 33, 'PSIPRED', 'psipred')","Structure prediction, Protein folds and structural domains, Protein secondary structure, Protein folding, stability and design, Protein structure analysis"
PMC11223827,"Figure 4 shows the trends in usage of the PSIPRED web server since 2018, when our faster and more user-friendly web site was first launched.",FALSE,FALSE,"(42, 49, 'PSIPRED', 'psipred')","Structure prediction, Protein folds and structural domains, Protein secondary structure, Protein folding, stability and design, Protein structure analysis"
PMC11223827,Total number of predictive analysis tasks run by the PSIPRED Workbench in the years 2019 to 2023.,FALSE,FALSE,"(53, 60, 'PSIPRED', 'psipred')","Structure prediction, Protein folds and structural domains, Protein secondary structure, Protein folding, stability and design, Protein structure analysis"
PMC11223827,The PSIPRED workbench remains a popular and well-used bioinformatics resource for researchers across the globe.,FALSE,FALSE,"(4, 11, 'PSIPRED', 'psipred')","Structure prediction, Protein folds and structural domains, Protein secondary structure, Protein folding, stability and design, Protein structure analysis"
PMC11223827,Funding for the PSIPRED Workbench is provided by the UK’s Biotechnology and Biological Sciences Research Council under BBSRC [BB/T019379/1].,FALSE,FALSE,"(16, 23, 'PSIPRED', 'psipred')","Structure prediction, Protein folds and structural domains, Protein secondary structure, Protein folding, stability and design, Protein structure analysis"
PMC11508656,"Thus, APE could be applied in the future as an accelerator of endothelial cell proliferation after, e.g., stent placement or atherosclerosis.",FALSE,TRUE,"(6, 9, 'APE', 'ape')","Workflows, Ontology and terminology, Bioinformatics"
PMC11508656,"In a first preliminary pilot study, it was shown that the supplementation of human umbilical vein endothelial cells (HUVECs) with an aqueous extract of AP (APE) did not harm the cells but dose-dependently enhanced the development of an endothelial cell monolayer in vitro four days after seeding [17].",FALSE,TRUE,"(156, 159, 'APE', 'ape')","Workflows, Ontology and terminology, Bioinformatics"
PMC11508656,These data led us to hypothesise that APE can influence the proliferation of HUVECs and the formation of thrombi.,FALSE,TRUE,"(38, 41, 'APE', 'ape')","Workflows, Ontology and terminology, Bioinformatics"
PMC11508656,"HUVECs were seeded in well plates in a cell culture medium supplemented with APE at three different concentrations (50, 100, and 200 µg/mL) [17].",FALSE,TRUE,"(77, 80, 'APE', 'ape')","Workflows, Ontology and terminology, Bioinformatics"
PMC11508656,The HUVECs were evaluated at least 12 h after APE and cell culture medium supplementation to avoid a misinterpretation of the morphological state of the endothelial cells [21].,FALSE,TRUE,"(46, 49, 'APE', 'ape')","Workflows, Ontology and terminology, Bioinformatics"
PMC11508656,"The effect of APE on the proliferation of HUVECs was assessed in real-time by the xCELLigence system E-plate 16 (ACEA Biosciences, Inc., San Diego, CA, USA) for 85 h at 10 min intervals.",FALSE,TRUE,"(14, 17, 'APE', 'ape')","Workflows, Ontology and terminology, Bioinformatics"
PMC11508656,"The effect of APE in increasing concentrations (0 µg/mL, 50 µg/mL, 100 µg/mL, and 200 µg/mL) on the CI was measured.",FALSE,TRUE,"(14, 17, 'APE', 'ape')","Workflows, Ontology and terminology, Bioinformatics"
PMC11508656,The endothelial cells reacted very differently to the addition of APE depending on the concentration of the extract.,FALSE,TRUE,"(66, 69, 'APE', 'ape')","Workflows, Ontology and terminology, Bioinformatics"
PMC11508656,"Compared to the control cells (46,720.0 ± 6473.9), there was a significant increase in endothelial cells 85 h after the addition of APE at 50 µg/mL (62,428.3 ± 4035.8) and at 100 µg/mL (70,931.1 ± 4850.2).",FALSE,TRUE,"(132, 135, 'APE', 'ape')","Workflows, Ontology and terminology, Bioinformatics"
PMC11508656,Figure 2 clearly shows that the addition of 100 µg/mL APE resulted in a significant increase in the HUVEC density already after 48 h (25%) and even more so after 85 h (52%) of culturing compared to that in the control cells.,FALSE,TRUE,"(54, 57, 'APE', 'ape')","Workflows, Ontology and terminology, Bioinformatics"
PMC11508656,"As an example, the course of monolayer growth for the addition of 100 µg/mL APE is shown in Figure 4.",FALSE,TRUE,"(76, 79, 'APE', 'ape')","Workflows, Ontology and terminology, Bioinformatics"
PMC11508656,"While the addition of APE at a concentration of 50 µg/mL caused no change in monolayer growth compared to that in the control cells (p = 0.60), the cell index was significantly increased by 22% 85 h after the addition of 100 µg/mL of APE compared to that in the control cells (p = 0.0054).",FALSE,TRUE,"(22, 25, 'APE', 'ape')","Workflows, Ontology and terminology, Bioinformatics"
PMC11508656,"Two days after cell seeding and continuous cultivation in culture medium with APE, no significant differences in viability between untreated and APE-treated HUVECs could be detected (Figure 5).",FALSE,TRUE,"(78, 81, 'APE', 'ape')","Workflows, Ontology and terminology, Bioinformatics"
PMC11508656,"Eighty-five hours after cell seeding, a higher number of viable HUVECs cultured with APE-100 and APE-200 was detected compared to that in the control cells.",FALSE,TRUE,"(85, 88, 'APE', 'ape')","Workflows, Ontology and terminology, Bioinformatics"
PMC11508656,There were also significantly more viable HUVECs after the addition of APE-200 than after the addition of AP 50.,FALSE,TRUE,"(71, 74, 'APE', 'ape')","Workflows, Ontology and terminology, Bioinformatics"
PMC11508656,"To analyse the influence of the possible damage of APE on HUVECs, the integrity of the outer endothelial cell membrane was examined.",FALSE,TRUE,"(51, 54, 'APE', 'ape')","Workflows, Ontology and terminology, Bioinformatics"
PMC11508656,"Therefore, two days after cell seeding, no cell damage caused by the addition of the APE was detected.",FALSE,TRUE,"(85, 88, 'APE', 'ape')","Workflows, Ontology and terminology, Bioinformatics"
PMC11508656,"Interestingly, the lowest LDH release also occurred in HUVECs treated with APE-100.",FALSE,TRUE,"(75, 78, 'APE', 'ape')","Workflows, Ontology and terminology, Bioinformatics"
PMC11508656,"Four days after cell seeding, LDH release was significantly lower in cell cultures treated with APE-50 and APE-100 compared to that in the untreated control.",FALSE,TRUE,"(96, 99, 'APE', 'ape')","Workflows, Ontology and terminology, Bioinformatics"
PMC11508656,Cells cultured with APE-200 showed no differences compared to the control cells.,FALSE,TRUE,"(20, 23, 'APE', 'ape')","Workflows, Ontology and terminology, Bioinformatics"
PMC11508656,It can therefore be concluded that the cultivation of cells with APE does not have a negative effect on the integrity of the cell membrane and does not induce cell damage in the concentration range investigated.,FALSE,TRUE,"(65, 68, 'APE', 'ape')","Workflows, Ontology and terminology, Bioinformatics"
PMC11508656,The absorbance values obtained for the APE-treated cells were then normalised to this value.,FALSE,TRUE,"(39, 42, 'APE', 'ape')","Workflows, Ontology and terminology, Bioinformatics"
PMC11508656,"Forty-eight hours after cell seeding, the metabolic activity of all the APE-treated HUVECs was significantly higher than 100% and thus above that of the untreated control cells.",FALSE,TRUE,"(72, 75, 'APE', 'ape')","Workflows, Ontology and terminology, Bioinformatics"
PMC11508656,A significantly increased metabolic activity was observed in cells cultured with 100 µg/mL APE compared to 50 and 200 µg/mL APE (Figure 8).,FALSE,TRUE,"(91, 94, 'APE', 'ape')","Workflows, Ontology and terminology, Bioinformatics"
PMC11508656,"Eighty-five hours after cell seeding, the metabolic activity of all the APE-treated cells was still above 100% and thus significantly higher than that of the untreated control.",FALSE,TRUE,"(72, 75, 'APE', 'ape')","Workflows, Ontology and terminology, Bioinformatics"
PMC11508656,The highest metabolic activity was again observed in HUVECs cultured with APE-100 (Figure 8).,FALSE,TRUE,"(74, 77, 'APE', 'ape')","Workflows, Ontology and terminology, Bioinformatics"
PMC11508656,"Forty-eight hours after cell seeding, a significantly increased prostacyclin release was observed in APE-200-treated HUVECs compared to untreated and APE-50- and APE-100-treated cells (Figure 9).",FALSE,TRUE,"(101, 104, 'APE', 'ape')","Workflows, Ontology and terminology, Bioinformatics"
PMC11508656,The significantly highest release was observed in APE-50-treated HUVECs compared to control and APE-100-treated cells.,FALSE,TRUE,"(50, 53, 'APE', 'ape')","Workflows, Ontology and terminology, Bioinformatics"
PMC11508656,HUVECs cultured with APE-100 showed the significantly lowest prostacyclin release compared to APE-50- and APE-200-treated cells (Figure 9).,FALSE,TRUE,"(21, 24, 'APE', 'ape')","Workflows, Ontology and terminology, Bioinformatics"
PMC11508656,"To investigate the influence of cultivating HUVECs with APE on a possible inflammatory activation of the cells, the release of the pro-inflammatory interleukin-6 (IL-6) was analysed.",FALSE,TRUE,"(56, 59, 'APE', 'ape')","Workflows, Ontology and terminology, Bioinformatics"
PMC11508656,"Forty-eight hours after seeding, the significantly highest IL-6 release was found for HUVECs treated with APE-200 compared to those of the untreated and APE-100-treated cells.",FALSE,TRUE,"(106, 109, 'APE', 'ape')","Workflows, Ontology and terminology, Bioinformatics"
PMC11508656,The lowest release was found in APE-100-treated HUVECs (Figure 10).,FALSE,TRUE,"(32, 35, 'APE', 'ape')","Workflows, Ontology and terminology, Bioinformatics"
PMC11508656,The lowest IL-6 release occurred in untreated control cells compared to those in APE-50- and APE-200-treated cells.,FALSE,TRUE,"(81, 84, 'APE', 'ape')","Workflows, Ontology and terminology, Bioinformatics"
PMC11508656,The highest release was observed in APE-200-treated HUVECs compared to that in APE-100-treated and untreated cells.,FALSE,TRUE,"(36, 39, 'APE', 'ape')","Workflows, Ontology and terminology, Bioinformatics"
PMC11508656,"Compared to APE-200- and APE-50-treated cells, the release of IL-6 by APE-100-treated cells was significantly reduced (Figure 10).",FALSE,TRUE,"(12, 15, 'APE', 'ape')","Workflows, Ontology and terminology, Bioinformatics"
PMC11508656,"It can therefore be concluded that the release of IL-6 was significantly increased by culturing the cells in APE-50 and APE-200, whereas culturing the cells in APE-100 was comparable to the release of IL-6 from untreated HUVECs.",FALSE,TRUE,"(109, 112, 'APE', 'ape')","Workflows, Ontology and terminology, Bioinformatics"
PMC11508656,Figure 11 shows adherent HUVECs after supplementation of the culture medium with 100 µg/mL APE.,FALSE,TRUE,"(91, 94, 'APE', 'ape')","Workflows, Ontology and terminology, Bioinformatics"
PMC11508656,"Forty-eight or eighty-five hours after cell seeding, all HUVECs (with or without APE) showed uniform vinculin expression.",FALSE,TRUE,"(81, 84, 'APE', 'ape')","Workflows, Ontology and terminology, Bioinformatics"
PMC11508656,"Thus, the formation of cell–cell and cell–substrate contacts was unaffected by the addition of APE.",FALSE,TRUE,"(95, 98, 'APE', 'ape')","Workflows, Ontology and terminology, Bioinformatics"
PMC11508656,The study revealed that APE at a concentration of 100 µg/mL resulted in a significant increase in adherent HUVECs compared to untreated control cells after 48 h and especially 85 h days of cultivation.,FALSE,TRUE,"(24, 27, 'APE', 'ape')","Workflows, Ontology and terminology, Bioinformatics"
PMC11508656,Figure 2 clearly shows that the addition of 100 µg/mL APE led to a significant increase in the density of HUVECs already after 48 h (+25%) and even more significantly after 85 h (+52%) of culturing.,FALSE,TRUE,"(54, 57, 'APE', 'ape')","Workflows, Ontology and terminology, Bioinformatics"
PMC11508656,"However, the exact molecular mechanism by which APE achieves the increased HUVEC density remains unclear.",FALSE,TRUE,"(48, 51, 'APE', 'ape')","Workflows, Ontology and terminology, Bioinformatics"
PMC11508656,One possible reason could be the supplementation of cells with iron from APE.,FALSE,TRUE,"(73, 76, 'APE', 'ape')","Workflows, Ontology and terminology, Bioinformatics"
PMC11508656,"There are studies analysing the iron content in APE [38,39,40].",FALSE,TRUE,"(48, 51, 'APE', 'ape')","Workflows, Ontology and terminology, Bioinformatics"
PMC11508656,"After supplementation of the culture medium with APE, significantly more viable HUVECs adhered compared to control cells (see Figure 2, nearly no death cells were visible), the damage to the outer cell membrane was prevented and less LDH was detected in the culture medium compared to the untreated control, while at the same time the metabolic activity was increased, hinting at an increased proliferation of the HUVECs.",FALSE,TRUE,"(49, 52, 'APE', 'ape')","Workflows, Ontology and terminology, Bioinformatics"
PMC11508656,"The activation or perturbation of the endothelial cells, as previously described as a reaction to altered conditions in the culture milieu [41,42,43,44,45], also occurred here in the first two days after the addition of APE at concentrations of 50 and 200 µg/mL, but was completely prevented at a concentration of 100 µg/mL.",FALSE,TRUE,"(220, 223, 'APE', 'ape')","Workflows, Ontology and terminology, Bioinformatics"
PMC11508656,The pattern of the IL-6 release of HUVECs with APE cultivation was very similar to that of prostacyclin.,FALSE,TRUE,"(47, 50, 'APE', 'ape')","Workflows, Ontology and terminology, Bioinformatics"
PMC11508656,"Here also, no increase in IL-6 concentration compared to that in control cells occurred for the APE concentration of 100 µg/mL (see Figure 10).",FALSE,TRUE,"(96, 99, 'APE', 'ape')","Workflows, Ontology and terminology, Bioinformatics"
PMC11508656,"Interestingly, no TXA2 was detected in the cell culture supernatant of HUVECs cultured with APE.",FALSE,TRUE,"(92, 95, 'APE', 'ape')","Workflows, Ontology and terminology, Bioinformatics"
PMC11508656,These release responses consistently indicated that there was no inflammatory response of the endothelial cells after adding 100 µg/mL APE to the culture medium.,FALSE,TRUE,"(135, 138, 'APE', 'ape')","Workflows, Ontology and terminology, Bioinformatics"
PMC11508656,"Thus, in the present study, the reduced synthesis of, e.g., prostacyclin and IL-6 (after 100 µg/mL APE in comparison to 50 or 200 µ/mL APE) could be associated with increased proliferation and thus stronger growth of the endothelial cell monolayer.",FALSE,TRUE,"(99, 102, 'APE', 'ape')","Workflows, Ontology and terminology, Bioinformatics"
PMC11508656,The anti-inflammatory effect of APE may also contribute to the improvement of endothelial proliferation.,FALSE,TRUE,"(32, 35, 'APE', 'ape')","Workflows, Ontology and terminology, Bioinformatics"
PMC11508656,"APE has been shown to reduce both TnFα and TGFβ [53,54].",FALSE,TRUE,"(0, 3, 'APE', 'ape')","Workflows, Ontology and terminology, Bioinformatics"
PMC11508656,showed that APE significantly reduced apoptosis [55].,FALSE,TRUE,"(12, 15, 'APE', 'ape')","Workflows, Ontology and terminology, Bioinformatics"
PMC11508656,"In addition, an APE-induced increase in endothelial nitric oxide synthase (eNOS) expression has been repeatedly reported [59,60,61,62].",FALSE,TRUE,"(16, 19, 'APE', 'ape')","Workflows, Ontology and terminology, Bioinformatics"
PMC11508656,"Two or four days after cell seeding, HUVECs (with or without APE) showed uniform vinculin expression, so that the formation of cell–cell and cell–substrate contacts appeared to be unaffected by the addition of APE.",FALSE,TRUE,"(61, 64, 'APE', 'ape')","Workflows, Ontology and terminology, Bioinformatics"
PMC11508656,"To date, in vivo toxicological studies of APE have not revealed any toxic effects on kidney, liver, the reproductive system, or body physiology during or after the administration of acute or chronic doses [68,69,70,71,72].",FALSE,TRUE,"(42, 45, 'APE', 'ape')","Workflows, Ontology and terminology, Bioinformatics"
PMC11508656,The highest proliferation was achieved after the addition of 100 µg/mL APE.,FALSE,TRUE,"(71, 74, 'APE', 'ape')","Workflows, Ontology and terminology, Bioinformatics"
PMC11508656,"Since neither cell–cell (VE-cadherin) nor cell–substrate (vinculin) binding was affected by APE, it is reasonable to assume that the increase in endothelial density was due to the proliferation of HUVECs.",FALSE,TRUE,"(92, 95, 'APE', 'ape')","Workflows, Ontology and terminology, Bioinformatics"
PMC11508656,Representative examples of the HUVEC monolayers of the control culture (without APE) and the culture wit APE in the concentration of 100 µg/mL (85 h after seeding).,FALSE,TRUE,"(80, 83, 'APE', 'ape')","Workflows, Ontology and terminology, Bioinformatics"
PMC11508656,"Continuous detection of the HUVEC monolayer for the addition of 100 µg/mL APE to the culture medium using the xCelligence system, n = 8 each.",FALSE,TRUE,"(74, 77, 'APE', 'ape')","Workflows, Ontology and terminology, Bioinformatics"
PMC11508656,APE 50: HUVECs in culture medium with 50 µg/mL AP extract.,FALSE,TRUE,"(0, 3, 'APE', 'ape')","Workflows, Ontology and terminology, Bioinformatics"
PMC11508656,APE-100: HUVECs in culture medium with 100 µg/mL AP extract.,FALSE,TRUE,"(0, 3, 'APE', 'ape')","Workflows, Ontology and terminology, Bioinformatics"
PMC11508656,APE-200: HUVECs in culture medium with 200 µg/mL APE.,FALSE,TRUE,"(0, 3, 'APE', 'ape')","Workflows, Ontology and terminology, Bioinformatics"
PMC11508656,"(A) Phase contrast image; (B) dead HUVECs stained with PI in red, (C) FDA-stained HUVEC monolayer showing viable cells in green; (D) HUVEC monolayer supplemented with 50 µg/mL APE; (E) HUVEC monolayer supplemented with 100 µg/mL APE; (F) HUVEC monolayer supplemented with 200 µg/mL APE.",FALSE,TRUE,"(176, 179, 'APE', 'ape')","Workflows, Ontology and terminology, Bioinformatics"
PMC11508656,APE-50: HUVECs in culture medium with 50 µg/mL APE.,FALSE,TRUE,"(0, 3, 'APE', 'ape')","Workflows, Ontology and terminology, Bioinformatics"
PMC11508656,AP-100: HUVECs in culture medium with 100 µg/mL APE extract.,FALSE,TRUE,"(48, 51, 'APE', 'ape')","Workflows, Ontology and terminology, Bioinformatics"
PMC11508656,AP200: HUVECs in culture medium with 200 µg/mL APE extract.,FALSE,TRUE,"(47, 50, 'APE', 'ape')","Workflows, Ontology and terminology, Bioinformatics"
PMC11508656,APE-100: HUVECs in culture medium with 100 µg/mL APE.,FALSE,TRUE,"(0, 3, 'APE', 'ape')","Workflows, Ontology and terminology, Bioinformatics"
PMC11508656,Prostacyclin (PGl2)—secretion of HUVECs two and four days after seeding (untreated control: HUVECs in culture medium; 50 µg/mL APE: HUVECs in culture medium with 50 µg/mL APE; 100 µg/mL APE: HUVECs in culture medium with 100 µg/mL APE; 200 µg/mL APE200: HUVECs in culture medium with 200 µg/mL APE.,FALSE,TRUE,"(127, 130, 'APE', 'ape')","Workflows, Ontology and terminology, Bioinformatics"
PMC11508656,"Representative image of paraformaldehyde-fixated HUVECs in culture medium supplemented with 100 µg/mL APE 85 h after seeding (HUVECs were fluorescently stained threefold, the actin cytoskeleton in green, von Willebrand factor in red, and genomic DNA in blue; scale bar: 50 µm).",FALSE,TRUE,"(102, 105, 'APE', 'ape')","Workflows, Ontology and terminology, Bioinformatics"
PMC11508656,"Representative immunofluorescence images of paraformaldehyde-fixated HUVECs in culture medium, HUVECs with 50 µg/mL APE, HUVECs with 100 µg/mL APE, and HUVECs with 200 µg/mL APE 85 h after seeding (40× primary magnification).",FALSE,TRUE,"(116, 119, 'APE', 'ape')","Workflows, Ontology and terminology, Bioinformatics"
PMC9929198,"In Phase III the data was engineered using Agilent’s proprietary software and open source software: OpenChrom 1.4 [2], Julia 1.7 [3] and Linux (Ubuntu 21.04) [4].Data formatRaw, Analysed, FilteredParameters for data collectionGCMS standard operating procedures were adhered to for sample analysis, including temperature, run times, carrier gas and internal standards.",FALSE,FALSE,"(100, 109, 'OpenChrom', 'openchrom')","Proteomics experiment, Proteomics, Metabolomics, Data visualisation"
PMC9929198,These files are required to be readable by OpenChrom in order that the analytical output can be accessed independently of the GCMS instrument.,FALSE,FALSE,"(43, 52, 'OpenChrom', 'openchrom')","Proteomics experiment, Proteomics, Metabolomics, Data visualisation"
PMC9929198,OpenChrom was used to produce a range of files for each sample which were saved into the sample folder.,FALSE,FALSE,"(0, 9, 'OpenChrom', 'openchrom')","Proteomics experiment, Proteomics, Metabolomics, Data visualisation"
PMC9929198,The method for producing these files using OpenChrom are described in the experimental design.,FALSE,FALSE,"(43, 52, 'OpenChrom', 'openchrom')","Proteomics experiment, Proteomics, Metabolomics, Data visualisation"
PMC9929198,The retention times are recorded in intervals on an average of 600 milliseconds that is exported from OpenChrom.3.“Chromatogram-MS_”.,FALSE,FALSE,"(102, 111, 'OpenChrom', 'openchrom')","Proteomics experiment, Proteomics, Metabolomics, Data visualisation"
PMC9929198,The other columns present are automatically produced by OpenChrom and are not relevant for sample identification.6.“Report_”.,FALSE,FALSE,"(56, 65, 'OpenChrom', 'openchrom')","Proteomics experiment, Proteomics, Metabolomics, Data visualisation"
PMC9929198,The retention times are recorded in intervals on an average of 600 milliseconds that is exported from OpenChrom.,FALSE,FALSE,"(102, 111, 'OpenChrom', 'openchrom')","Proteomics experiment, Proteomics, Metabolomics, Data visualisation"
PMC9929198,The other columns present are automatically produced by OpenChrom and are not relevant for sample identification.,FALSE,FALSE,"(56, 65, 'OpenChrom', 'openchrom')","Proteomics experiment, Proteomics, Metabolomics, Data visualisation"
PMC9929198,"In phase III, OpenChrom [7] was used to process the Agilent proprietary data into open source formats.",FALSE,FALSE,"(14, 23, 'OpenChrom', 'openchrom')","Proteomics experiment, Proteomics, Metabolomics, Data visualisation"
PMC9929198,OpenChrom is an open source program developed to view and analyse chromatographic as well as other types of data.,FALSE,FALSE,"(0, 9, 'OpenChrom', 'openchrom')","Proteomics experiment, Proteomics, Metabolomics, Data visualisation"
PMC9929198,"Specifically OpenChrom can open GCMS data acquired from most proprietary vendors and runs on macOS, Windows and Linux [2].",FALSE,FALSE,"(13, 22, 'OpenChrom', 'openchrom')","Proteomics experiment, Proteomics, Metabolomics, Data visualisation"
PMC9929198,"DrugSamples_Drug-MDMA_Pathway-AlHg_Batch-75C.D.2.OpenChrom can read the sample data folder generated by ChemStation without any modification.3.OpenChrom detect peaks using the sample data and the AMDIS database, which must be installed.",FALSE,FALSE,"(49, 58, 'OpenChrom', 'openchrom')","Proteomics experiment, Proteomics, Metabolomics, Data visualisation"
PMC9929198,"OpenChrom detects peaks as follows:(i)right-click on the chromatogram,(ii)move the mouse pointer over “Peak Detector” and(iii)click “AMDIS (extern)” from the menu.This produces a number of windows.",FALSE,FALSE,"(0, 9, 'OpenChrom', 'openchrom')","Proteomics experiment, Proteomics, Metabolomics, Data visualisation"
PMC9929198,"The peaks are stored in memory and an inverted triangle is displayed on top of the detected peaks.4.Peak areas were obtained in OpenChrom following the steps:(i)right-click on the chromatogram,(ii)hover over “Peak Integrator”,(iii)select “Peak Integrator Trapezoid”; a window with title “Edit Processor Options” appears,(iv)keep the default button highlighted “Use System Options”, and(v)select “Finish” at the bottom right corner of the window.5.The calculated retention times and areas were recorded in a comma separated value (CSV) file following the naming convention in Fig.",FALSE,FALSE,"(128, 137, 'OpenChrom', 'openchrom')","Proteomics experiment, Proteomics, Metabolomics, Data visualisation"
PMC9929198,"with prefix “Peaks_”,(vi)click “Finish” at the bottom right of the pop-up window.6.OpenChrom created a report that contains the sample information and the peak areas.",FALSE,FALSE,"(83, 92, 'OpenChrom', 'openchrom')","Proteomics experiment, Proteomics, Metabolomics, Data visualisation"
PMC9929198,"The report was saved in the file with prefix “Report_” in text format (with extension “*.txt”); the report is obtained following the steps,(i)right-click on the chromatogram,(ii)select “Chromatogram Reports”,(iii)select “OpenChrom Report (*.txt)”,(iv)save the report by following the same process as in item 5, and by replacing prefix “Peaks_” with “Report_”.7.To record the TIS as a CSV file,(i)right-click on the chromatogram,(ii)move the cursor over “Chromatogram Export”,(iii)click on “CSV Chromatogram (*.csv)”(iv)and follow the same process as in item 5, replacing the prefix with “Chromatogram-MS_”.8.At this point the sample file names are of the form DrugSamples_Drug-MDMA_Pathway-AlHg_Batch-75C.D, where the last block after the “_” represents the batch number of the drug production.",FALSE,FALSE,"(221, 230, 'OpenChrom', 'openchrom')","Proteomics experiment, Proteomics, Metabolomics, Data visualisation"
PMC9929198,OpenChrom can read the sample data folder generated by ChemStation without any modification.,FALSE,FALSE,"(0, 9, 'OpenChrom', 'openchrom')","Proteomics experiment, Proteomics, Metabolomics, Data visualisation"
PMC9929198,"OpenChrom detect peaks using the sample data and the AMDIS database, which must be installed.",FALSE,FALSE,"(0, 9, 'OpenChrom', 'openchrom')","Proteomics experiment, Proteomics, Metabolomics, Data visualisation"
PMC9929198,"OpenChrom detects peaks as follows:(i)right-click on the chromatogram,(ii)move the mouse pointer over “Peak Detector” and(iii)click “AMDIS (extern)” from the menu.",FALSE,FALSE,"(0, 9, 'OpenChrom', 'openchrom')","Proteomics experiment, Proteomics, Metabolomics, Data visualisation"
PMC9929198,"Peak areas were obtained in OpenChrom following the steps:(i)right-click on the chromatogram,(ii)hover over “Peak Integrator”,(iii)select “Peak Integrator Trapezoid”; a window with title “Edit Processor Options” appears,(iv)keep the default button highlighted “Use System Options”, and(v)select “Finish” at the bottom right corner of the window.",FALSE,FALSE,"(28, 37, 'OpenChrom', 'openchrom')","Proteomics experiment, Proteomics, Metabolomics, Data visualisation"
PMC9929198,OpenChrom created a report that contains the sample information and the peak areas.,FALSE,FALSE,"(0, 9, 'OpenChrom', 'openchrom')","Proteomics experiment, Proteomics, Metabolomics, Data visualisation"
PMC9929198,"The report was saved in the file with prefix “Report_” in text format (with extension “*.txt”); the report is obtained following the steps,(i)right-click on the chromatogram,(ii)select “Chromatogram Reports”,(iii)select “OpenChrom Report (*.txt)”,(iv)save the report by following the same process as in item 5, and by replacing prefix “Peaks_” with “Report_”.",FALSE,FALSE,"(221, 230, 'OpenChrom', 'openchrom')","Proteomics experiment, Proteomics, Metabolomics, Data visualisation"
PMC9929198,"select “OpenChrom Report (*.txt)”,",FALSE,FALSE,"(8, 17, 'OpenChrom', 'openchrom')","Proteomics experiment, Proteomics, Metabolomics, Data visualisation"
PMC11480384,"In the current study, the raw data for metabolomics can be obtained in Metabolights, with the ID MTBLS10002 (MetaboLights MTBLS)31.",FALSE,FALSE,"(109, 121, 'MetaboLights', 'metabolights')",Metabolomics
PMC11188463,"The Human Splicing Finder, SpliceAI, and varSEAK database were used to predict the effect of mutations on splicing function.",FALSE,FALSE,"(4, 25, 'Human Splicing Finder', 'human_splicing_finder')","Gene transcripts, RNA splicing, Genetic variation, Data governance, Rare diseases, Medical informatics"
PMC11188463,Human Splicing Finder Version 2.4.1 suggested that the c.5633A>T of DYSF mutation caused alteration of auxiliary sequences and significant alteration of the ESE/ESS motif ratio.,FALSE,FALSE,"(0, 21, 'Human Splicing Finder', 'human_splicing_finder')","Gene transcripts, RNA splicing, Genetic variation, Data governance, Rare diseases, Medical informatics"
PMC11188463,"Different complementary online software tools were employed for splicing prediction: Human Splicing Finder (HSF) Version 2.4.1 (http://www.umd.be/HSF/), SpliceAI (https://spliceailookup.broadinstitute.org/), and varSEAK (https://varseak.bio/).",FALSE,FALSE,"(85, 106, 'Human Splicing Finder', 'human_splicing_finder')","Gene transcripts, RNA splicing, Genetic variation, Data governance, Rare diseases, Medical informatics"
PMC10696839,The prediction procedure for mass values was written in part of the GPMsDB-tk (GPMsDB-dbtk) scripts developed in this study.,FALSE,FALSE,"(79, 90, 'GPMsDB-dbtk', 'gpmsdb-dbtk')","Database management, Microbiology, Proteomics"
PMC10696839,"Matching of protein mass peaks was performed using GPMsDB-tk (v1.0.1, including GPMsDB-dbtk v1.0.1 for building custom databases for user-provided genomes), developed as part of this study.",FALSE,FALSE,"(80, 91, 'GPMsDB-dbtk', 'gpmsdb-dbtk')","Database management, Microbiology, Proteomics"
PMC10696839,The source code and documentation are available at https://github.com/ysekig/GPMsDB-tk [59] and https://github.com/ysekig/GPMsDB-dbtk [60].,FALSE,FALSE,"(122, 133, 'GPMsDB-dbtk', 'gpmsdb-dbtk')","Database management, Microbiology, Proteomics"
PMC10696839,"For identification purposes, a toolkit (GPMsDB-tk) was developed in this study based on these observations with the current GPMsDB.",FALSE,FALSE,"(40, 49, 'GPMsDB-tk', 'gpmsdb-tk')","Taxonomy, Proteomics, Microbiology"
PMC10696839,The best-matched genome entries were identified using GPMsDB-tk.,FALSE,FALSE,"(54, 63, 'GPMsDB-tk', 'gpmsdb-tk')","Taxonomy, Proteomics, Microbiology"
PMC10696839,This confirmed that microbial identification by GPMsDB-tk is robust to differences in cultivation conditions.,FALSE,FALSE,"(48, 57, 'GPMsDB-tk', 'gpmsdb-tk')","Taxonomy, Proteomics, Microbiology"
PMC10696839,"In the cultivation of anaerobes from the same sample, > 100 colonies were selected and anaerobically subcultured in 96-well plates, and then the resultant cells were used for identification with GPMsDB-tk.",FALSE,FALSE,"(195, 204, 'GPMsDB-tk', 'gpmsdb-tk')","Taxonomy, Proteomics, Microbiology"
PMC10696839,"Overall, 76 isolates (72%), including those matched with MAGs, were correctly identified at the species level; i.e., in these cases, MALDI-TOF MS identification with GPMsDB-tk gave the same GTDB taxonomy string down to the species level with those of 16S rRNA gene sequencing.",FALSE,FALSE,"(166, 175, 'GPMsDB-tk', 'gpmsdb-tk')","Taxonomy, Proteomics, Microbiology"
PMC10696839,4Identification of the 103 isolates obtained from mouse fecal samples based on MALDI-TOF MS profiles with GPMsDB-tk.,FALSE,FALSE,"(106, 115, 'GPMsDB-tk', 'gpmsdb-tk')","Taxonomy, Proteomics, Microbiology"
PMC10696839,Identification of the 103 isolates obtained from mouse fecal samples based on MALDI-TOF MS profiles with GPMsDB-tk.,FALSE,FALSE,"(105, 114, 'GPMsDB-tk', 'gpmsdb-tk')","Taxonomy, Proteomics, Microbiology"
PMC10696839,"Our toolkit (GPMsDB-tk) and database (GPMsDB) thus substantially expand its utility for not only clinical discipline but also the screening of microbes in other microbial fields, including a search for uncultured lineages of descent in the domains Bacteria and Archaea.",FALSE,FALSE,"(13, 22, 'GPMsDB-tk', 'gpmsdb-tk')","Taxonomy, Proteomics, Microbiology"
PMC10696839,"We found that MALDI-TOF MS measurements with GPMsDB-tk successfully identified the isolates in most of the determinations (96 correct calls out of 103 isolates at the genus to strain [MAG] levels, 93%), as validated by full-length 16S rRNA gene sequencing (Additional file 7: Table S6).",FALSE,FALSE,"(45, 54, 'GPMsDB-tk', 'gpmsdb-tk')","Taxonomy, Proteomics, Microbiology"
PMC10696839,The prediction procedure for mass values was written in part of the GPMsDB-tk (GPMsDB-dbtk) scripts developed in this study.,FALSE,FALSE,"(68, 77, 'GPMsDB-tk', 'gpmsdb-tk')","Taxonomy, Proteomics, Microbiology"
PMC10696839,"Matching of protein mass peaks was performed using GPMsDB-tk (v1.0.1, including GPMsDB-dbtk v1.0.1 for building custom databases for user-provided genomes), developed as part of this study.",FALSE,FALSE,"(51, 60, 'GPMsDB-tk', 'gpmsdb-tk')","Taxonomy, Proteomics, Microbiology"
PMC10696839,GPMsDB-tk is a software toolkit for assigning taxonomic identification to user-provided MALDI-TOF mass spectrometry profiles.,FALSE,FALSE,"(0, 9, 'GPMsDB-tk', 'gpmsdb-tk')","Taxonomy, Proteomics, Microbiology"
PMC10696839,Details of the functionality available in the GPMsDB-tk are shown in Additional file 1: Fig.,FALSE,FALSE,"(46, 55, 'GPMsDB-tk', 'gpmsdb-tk')","Taxonomy, Proteomics, Microbiology"
PMC10696839,GPMsDB-tk is a Python package that can be run on a regular laptop using ~ 5 Gb of RAM for a single thread.,FALSE,FALSE,"(0, 9, 'GPMsDB-tk', 'gpmsdb-tk')","Taxonomy, Proteomics, Microbiology"
PMC10696839,"Unless specified, for taxonomic identification based on MALDI-TOF MS measurements, self-mass calibration in the GPMsDB-tk (option -aa) and -m option (-m 0) were used with the option “reps” (reference data with representative genome entries at the species level), “all” (reference data with all genome entries), or “custom” (reference data with all genome entries plus user-provided custom genome data) with the option “peak_bwf” with schoring theme III (“–score_type weighted”).",FALSE,FALSE,"(112, 121, 'GPMsDB-tk', 'gpmsdb-tk')","Taxonomy, Proteomics, Microbiology"
PMC10696839,GPMsDB-tk provides not only score values for hit genomes but also probability value for each score.,FALSE,FALSE,"(0, 9, 'GPMsDB-tk', 'gpmsdb-tk')","Taxonomy, Proteomics, Microbiology"
PMC10696839,Schematic of the GPMsDB-tk.,FALSE,FALSE,"(17, 26, 'GPMsDB-tk', 'gpmsdb-tk')","Taxonomy, Proteomics, Microbiology"
PMC10696839,GPMsDB-tk results for identification of 81 bacterial and archaeal reference strains.Additional file 5: Table S4.,FALSE,FALSE,"(0, 9, 'GPMsDB-tk', 'gpmsdb-tk')","Taxonomy, Proteomics, Microbiology"
PMC10696839,GPMsDB-tk results for identification of 13 acidobacterial strains.Additional file 6: Table S5.,FALSE,FALSE,"(0, 9, 'GPMsDB-tk', 'gpmsdb-tk')","Taxonomy, Proteomics, Microbiology"
PMC10696839,GPMsDB-tk results for identification of 81 bacterial and archaeal reference strains.,FALSE,FALSE,"(0, 9, 'GPMsDB-tk', 'gpmsdb-tk')","Taxonomy, Proteomics, Microbiology"
PMC10696839,GPMsDB-tk results for identification of 13 acidobacterial strains.,FALSE,FALSE,"(0, 9, 'GPMsDB-tk', 'gpmsdb-tk')","Taxonomy, Proteomics, Microbiology"
PMC10696839,"GPMsDB-tk, which consists of Python scripts and documentation, is licensed under the GNU General Public License (Version 3).",FALSE,FALSE,"(0, 9, 'GPMsDB-tk', 'gpmsdb-tk')","Taxonomy, Proteomics, Microbiology"
PMC10696839,The source code and documentation are available at https://github.com/ysekig/GPMsDB-tk [59] and https://github.com/ysekig/GPMsDB-dbtk [60].,FALSE,FALSE,"(77, 86, 'GPMsDB-tk', 'gpmsdb-tk')","Taxonomy, Proteomics, Microbiology"
PMC11351099,"MacSyFinder with the TXSScan models is used to identify genes and gene clusters encoding for diverse secretion systems (24, 56).",FALSE,FALSE,"(0, 11, 'MacSyFinder', 'macsyfinder')",Functional genomics
PMC11351099,"For example, DefenseFinder, MacSyFinder, and GapMind took around one and a half minutes or less to run for each test genome.",FALSE,FALSE,"(28, 39, 'MacSyFinder', 'macsyfinder')",Functional genomics
PMC10320092,"In this scenario, we present KVFinder-web, an open-source web-based application of parKVFinder software for cavity detection and characterization of biomolecular structures.",FALSE,FALSE,"(29, 37, 'KVFinder', 'kvfinder')","Structural biology, Computational chemistry, Structure analysis, Protein structure analysis"
PMC10320092,The KVFinder-web has two independent components: a RESTful web service and a web graphical portal.,FALSE,FALSE,"(4, 12, 'KVFinder', 'kvfinder')","Structural biology, Computational chemistry, Structure analysis, Protein structure analysis"
PMC10320092,"Our web service, KVFinder-web service, handles client requests, manages accepted jobs, and performs cavity detection and characterization on accepted jobs.",FALSE,FALSE,"(17, 25, 'KVFinder', 'kvfinder')","Structural biology, Computational chemistry, Structure analysis, Protein structure analysis"
PMC10320092,"Our graphical web portal, KVFinder-web portal, provides a simple and straightforward page for cavity analysis, which customizes detection parameters, submits jobs to the web service component, and displays cavities and characterizations.",FALSE,FALSE,"(26, 34, 'KVFinder', 'kvfinder')","Structural biology, Computational chemistry, Structure analysis, Protein structure analysis"
PMC10320092,"We provide a publicly available KVFinder-web at https://kvfinder-web.cnpem.br, running in a cloud environment as docker containers.",FALSE,FALSE,"(32, 40, 'KVFinder', 'kvfinder')","Structural biology, Computational chemistry, Structure analysis, Protein structure analysis"
PMC10320092,"Further, this deployment type allows KVFinder-web components to be configured locally and customized according to user demand.",FALSE,FALSE,"(37, 45, 'KVFinder', 'kvfinder')","Structural biology, Computational chemistry, Structure analysis, Protein structure analysis"
PMC10320092,"Hence, users may run jobs on a locally configured service or our public KVFinder-web.",FALSE,FALSE,"(72, 80, 'KVFinder', 'kvfinder')","Structural biology, Computational chemistry, Structure analysis, Protein structure analysis"
PMC10320092,Graphical AbstractKVFinder-web: A web-based application for cavity detection and characterization of any type of biomolecular structure.,FALSE,FALSE,"(19, 27, 'KVFinder', 'kvfinder')","Structural biology, Computational chemistry, Structure analysis, Protein structure analysis"
PMC10320092,KVFinder-web: A web-based application for cavity detection and characterization of any type of biomolecular structure.,FALSE,FALSE,"(0, 8, 'KVFinder', 'kvfinder')","Structural biology, Computational chemistry, Structure analysis, Protein structure analysis"
PMC10320092,"Recently, we have developed parKVFinder (13), a robust method for detecting and characterizing binding sites in biomolecules, using a geometric grid-and-sphere method and thread-level parallelization.",FALSE,FALSE,"(31, 39, 'KVFinder', 'kvfinder')","Structural biology, Computational chemistry, Structure analysis, Protein structure analysis"
PMC10320092,"Compared to other software for cavity detection, parKVFinder has an intuitive set of parameters and has been extensively benchmarked in the literature for detection and computational capabilities, delivering accurate and robust performance with any type of protein cavity (1,2,4,13).",FALSE,FALSE,"(52, 60, 'KVFinder', 'kvfinder')","Structural biology, Computational chemistry, Structure analysis, Protein structure analysis"
PMC10320092,"parKVFinder stands out by combining geometric and physicochemical characterizations of binding sites, effectively aiding users to identify functionally relevant cavities and to study the molecular recognition process.",FALSE,FALSE,"(3, 11, 'KVFinder', 'kvfinder')","Structural biology, Computational chemistry, Structure analysis, Protein structure analysis"
PMC10320092,"Aside from parKVFinder's advances in performance and usability, the installation and configuration procedures of our software, as well as other standalone cavity detection software, still pose a major barrier to users who lack the technical knowledge ideally required to perform them.",FALSE,FALSE,"(14, 22, 'KVFinder', 'kvfinder')","Structural biology, Computational chemistry, Structure analysis, Protein structure analysis"
PMC10320092,"In this scenario, we introduce KVFinder-web, an open-source web-based application of the parKVFinder software, consisting of a RESTful web service for cavity detection and characterization and a graphical web portal.",FALSE,FALSE,"(31, 39, 'KVFinder', 'kvfinder')","Structural biology, Computational chemistry, Structure analysis, Protein structure analysis"
PMC10320092,Our web application aims to democratize and expand even further the parKVFinder user base in the structural biology community.,FALSE,FALSE,"(71, 79, 'KVFinder', 'kvfinder')","Structural biology, Computational chemistry, Structure analysis, Protein structure analysis"
PMC10320092,"These users will be able to perform cavity detection on third-party computing platforms, such as institutional servers or cloud infrastructures, using parKVFinder as a service (SaaS).",FALSE,FALSE,"(154, 162, 'KVFinder', 'kvfinder')","Structural biology, Computational chemistry, Structure analysis, Protein structure analysis"
PMC10320092,"KVFinder-web is a powerful web-based tool designed to detect cavities in a wide range of biomolecular structures, including but not limited to proteins and nucleic acids.",FALSE,FALSE,"(0, 8, 'KVFinder', 'kvfinder')","Structural biology, Computational chemistry, Structure analysis, Protein structure analysis"
PMC10320092,The interactive web interface (KVFinder-web portal) provides users an easy-to-use platform to execute the parKVFinder software and analyze the results through any web browser.,FALSE,FALSE,"(31, 39, 'KVFinder', 'kvfinder')","Structural biology, Computational chemistry, Structure analysis, Protein structure analysis"
PMC10320092,"Meanwhile, the web service (KVFinder-web service) itself executes parKVFinder (13) with its geometric grid-and-sphere-based method, as detailed in (2,4,13).",FALSE,FALSE,"(28, 36, 'KVFinder', 'kvfinder')","Structural biology, Computational chemistry, Structure analysis, Protein structure analysis"
PMC10320092,"To further enhance user experience, we also provide alternative client-side applications, including a Python HTTP client and a graphical PyMOL plugin (PyMOL KVFinder-web Tools).",FALSE,FALSE,"(157, 165, 'KVFinder', 'kvfinder')","Structural biology, Computational chemistry, Structure analysis, Protein structure analysis"
PMC10320092,"To ensure more comprehensive characterization, KVFinder-web has been integrated with additional features, such as depth calculation and Eisenberg & Weiss hydropathy characterization, which are implemented in pyKVFinder (4).",FALSE,FALSE,"(47, 55, 'KVFinder', 'kvfinder')","Structural biology, Computational chemistry, Structure analysis, Protein structure analysis"
PMC10320092,These features are now part of the latest version of parKVFinder (v1.2.0) and enable users to obtain more robust and detailed results.,FALSE,FALSE,"(56, 64, 'KVFinder', 'kvfinder')","Structural biology, Computational chemistry, Structure analysis, Protein structure analysis"
PMC10320092,"The KVFinder-web portal (Figure 1; https://github.com/LBC-LNBio/KVFinder-web-portal), developed using the Shiny R package (14) (https://shiny.rstudio.com), provides a simple and straightforward website for cavity analysis and visualization, requiring only a biomolecule in Protein Data Bank (PDB) format or PDB ID.",FALSE,FALSE,"(4, 12, 'KVFinder', 'kvfinder')","Structural biology, Computational chemistry, Structure analysis, Protein structure analysis"
PMC10320092,KVFinder-web portal.,FALSE,FALSE,"(0, 8, 'KVFinder', 'kvfinder')","Structural biology, Computational chemistry, Structure analysis, Protein structure analysis"
PMC10320092,(A) Screenshot of the KVFinder-web portal main page showing the main tabs and the sections of target biomolecule input and choice of KVFinder-web run mode.,FALSE,FALSE,"(22, 30, 'KVFinder', 'kvfinder')","Structural biology, Computational chemistry, Structure analysis, Protein structure analysis"
PMC10320092,"After uploading the PDB, the KVFinder-web portal checks the PDB and informs non-standard residues detected [3].",FALSE,FALSE,"(29, 37, 'KVFinder', 'kvfinder')","Structural biology, Computational chemistry, Structure analysis, Protein structure analysis"
PMC10320092,"The ‘Run Cavity Analysis’ tab features the major functionalities of KVFinder-web, in which users can load a target biomolecule, customize the cavity detection parameters (‘Probe In’, ‘Probe Out’, ‘Removal Distance’, and ‘Volume Cutoff’), and download and visualize results.",FALSE,FALSE,"(68, 76, 'KVFinder', 'kvfinder')","Structural biology, Computational chemistry, Structure analysis, Protein structure analysis"
PMC10320092,"To execute KVFinder-web (Figure 1B), users must first choose a biomolecule and then select an appropriate run mode.",FALSE,FALSE,"(11, 19, 'KVFinder', 'kvfinder')","Structural biology, Computational chemistry, Structure analysis, Protein structure analysis"
PMC10320092,KVFinder-web allows users to submit any kind of target biomolecule for cavity analysis (Figure 1B).,FALSE,FALSE,"(0, 8, 'KVFinder', 'kvfinder')","Structural biology, Computational chemistry, Structure analysis, Protein structure analysis"
PMC10320092,"After completing these two steps, users submit the job to the KVFinder-web service by clicking the ‘Submit the job’ button.",FALSE,FALSE,"(62, 70, 'KVFinder', 'kvfinder')","Structural biology, Computational chemistry, Structure analysis, Protein structure analysis"
PMC10320092,The KVFinder-web portal provides an easy and interactive way to download and visualize cavity detection results.,FALSE,FALSE,"(4, 12, 'KVFinder', 'kvfinder')","Structural biology, Computational chemistry, Structure analysis, Protein structure analysis"
PMC10320092,Results and visualization in KVFinder-web portal.,FALSE,FALSE,"(29, 37, 'KVFinder', 'kvfinder')","Structural biology, Computational chemistry, Structure analysis, Protein structure analysis"
PMC10320092,(A) Screenshot of the results section of the KVFinder-web portal.,FALSE,FALSE,"(45, 53, 'KVFinder', 'kvfinder')","Structural biology, Computational chemistry, Structure analysis, Protein structure analysis"
PMC10320092,The KVFinder-web service (https://github.com/LBC-LNBio/KVFinder-web-service) is a RESTful service with a Web-Queue-Worker architecture.,FALSE,FALSE,"(4, 12, 'KVFinder', 'kvfinder')","Structural biology, Computational chemistry, Structure analysis, Protein structure analysis"
PMC10320092,The received data must contain the molecular structures and parKVFinder detection parameters.,FALSE,FALSE,"(63, 71, 'KVFinder', 'kvfinder')","Structural biology, Computational chemistry, Structure analysis, Protein structure analysis"
PMC10320092,The ‘Worker’ module communicates with the ‘Queue’ module and requests the next job to be processed by the parKVFinder software.,FALSE,FALSE,"(109, 117, 'KVFinder', 'kvfinder')","Structural biology, Computational chemistry, Structure analysis, Protein structure analysis"
PMC10320092,"Each KVFinder-web service module is packaged in a Docker container (21), making it available to run in local or cloud computing environments.",FALSE,FALSE,"(5, 13, 'KVFinder', 'kvfinder')","Structural biology, Computational chemistry, Structure analysis, Protein structure analysis"
PMC10320092,"Besides our publicly available KVFinder-web service, a local web service can also be configured on third-party platforms, such as institutional servers or cloud services, using parKVFinder as a service (SaaS).",FALSE,FALSE,"(31, 39, 'KVFinder', 'kvfinder')","Structural biology, Computational chemistry, Structure analysis, Protein structure analysis"
PMC10320092,"The KVFinder-web service has some limitations compared to a standalone version of parKVFinder, which are designed to prevent very demanding jobs from exhausting the web service.",FALSE,FALSE,"(4, 12, 'KVFinder', 'kvfinder')","Structural biology, Computational chemistry, Structure analysis, Protein structure analysis"
PMC10320092,"Therefore, some parKVFinder parameters are constrained or even predefined.",FALSE,FALSE,"(19, 27, 'KVFinder', 'kvfinder')","Structural biology, Computational chemistry, Structure analysis, Protein structure analysis"
PMC10320092,"The KVFinder-web application components (KVFinder-web service and KVFinder-web portal) will be continuously improved and updated to meet the needs of the scientific community, including new characterizations and performance enhancements.",FALSE,FALSE,"(4, 12, 'KVFinder', 'kvfinder')","Structural biology, Computational chemistry, Structure analysis, Protein structure analysis"
PMC10320092,"In addition to the primary interaction mode of KVFinder-web, we also provide additional client-side applications, such as PyMOL KVFinder-web and an example of a Python HTTP client, which broaden the range of possibilities for user interaction.",FALSE,FALSE,"(47, 55, 'KVFinder', 'kvfinder')","Structural biology, Computational chemistry, Structure analysis, Protein structure analysis"
PMC10320092,"For users familiarized with PyMOL (16), PyMOL KVFinder-web Tools (Supplementary Figure S1; https://github.com/LBC-LNBio/PyMOL-KVFinder-web-Tools), developed in Python3 and Qt, integrates the KVFinder-web service with the molecular visualization software.",FALSE,FALSE,"(46, 54, 'KVFinder', 'kvfinder')","Structural biology, Computational chemistry, Structure analysis, Protein structure analysis"
PMC10320092,This user-friendly graphical user interface (GUI) enables customization of detection parameters for a target biomolecular structure and submits jobs to a configured KVFinder-web service (Supplementary Figure S1A).,FALSE,FALSE,"(165, 173, 'KVFinder', 'kvfinder')","Structural biology, Computational chemistry, Structure analysis, Protein structure analysis"
PMC10320092,"As in parKVFinder PyMOL plugin (13), the search space can also be adjusted to a custom box (box adjustment mode) and/or a radius within a target ligand or molecule (ligand adjustment mode), instead of detecting and characterizing cavities throughout the biomolecular surface (whole structure mode).",FALSE,FALSE,"(9, 17, 'KVFinder', 'kvfinder')","Structural biology, Computational chemistry, Structure analysis, Protein structure analysis"
PMC10320092,"After successful submission, accepted jobs are routinely and asynchronously requested to the KVFinder-web service.",FALSE,FALSE,"(93, 101, 'KVFinder', 'kvfinder')","Structural biology, Computational chemistry, Structure analysis, Protein structure analysis"
PMC10320092,"This graphical plugin operates in a similar way to KVFinder-web portal, the characterizations are shown in lists (Supplementary Figure S1B) and the cavities customized by their properties in PyMOL viewer (Supplementary Figure S1C and D).",FALSE,FALSE,"(51, 59, 'KVFinder', 'kvfinder')","Structural biology, Computational chemistry, Structure analysis, Protein structure analysis"
PMC10320092,"Nevertheless, submitted jobs in the KVFinder-web portal can be loaded in PyMOL KVFinder-web Tools and vice versa.",FALSE,FALSE,"(36, 44, 'KVFinder', 'kvfinder')","Structural biology, Computational chemistry, Structure analysis, Protein structure analysis"
PMC10320092,The KVFinder-web portal and PyMOL KVFinder-web Tools may not fully fulfill the needs of advanced users.,FALSE,FALSE,"(4, 12, 'KVFinder', 'kvfinder')","Structural biology, Computational chemistry, Structure analysis, Protein structure analysis"
PMC10320092,This client operates using standard parKVFinder input syntax and provides tools to interact with a configured KVFinder-web service.,FALSE,FALSE,"(39, 47, 'KVFinder', 'kvfinder')","Structural biology, Computational chemistry, Structure analysis, Protein structure analysis"
PMC10320092,"The KVFinder-web service is publicly available at https://kvfinder-web.cnpem.br, which is free and open to all users without login requirement.",FALSE,FALSE,"(4, 12, 'KVFinder', 'kvfinder')","Structural biology, Computational chemistry, Structure analysis, Protein structure analysis"
PMC10320092,"As an illustrative example of KVFinder-web (Figure 3), we detected and characterized the catalytic site of the Human Immunodeficiency Virus type 1 (HIV-1) protease bound to cyclic urea carbonyl oxygen (22), using KVFinder-web portal.",FALSE,FALSE,"(30, 38, 'KVFinder', 'kvfinder')","Structural biology, Computational chemistry, Structure analysis, Protein structure analysis"
PMC10320092,"Besides cavity detection and shape definition, KVFinder-web also provides the volume, area, depth and hydropathy of the detected cavities (Figure 2; cavity KAG).",FALSE,FALSE,"(47, 55, 'KVFinder', 'kvfinder')","Structural biology, Computational chemistry, Structure analysis, Protein structure analysis"
PMC10320092,"The cavity detection implemented in the KVFinder-web application has been extensively benchmarked against other well-known cavity detection methods in the literature (2,4,13), presenting robust detection and computational performance.",FALSE,FALSE,"(40, 48, 'KVFinder', 'kvfinder')","Structural biology, Computational chemistry, Structure analysis, Protein structure analysis"
PMC10320092,"In addition, we evaluated KVFinder-web computational performance with a protein structure dataset from (13), varying two major parameters related to cavity detection: ‘Probe Out’ and ‘Removal Distance’ (Figure 4).",FALSE,FALSE,"(26, 34, 'KVFinder', 'kvfinder')","Structural biology, Computational chemistry, Structure analysis, Protein structure analysis"
PMC10320092,"Thus, greater ‘Probe Out’ sizes tend to reduce the degree of accessibility of the molecular surface created and ultimately, increase the elapsed time to perform calculations in KVFinder-web service (Figure 4A).",FALSE,FALSE,"(177, 185, 'KVFinder', 'kvfinder')","Structural biology, Computational chemistry, Structure analysis, Protein structure analysis"
PMC10320092,Effects of detection parameters on KVFinder-web service performance.,FALSE,FALSE,"(35, 43, 'KVFinder', 'kvfinder')","Structural biology, Computational chemistry, Structure analysis, Protein structure analysis"
PMC10320092,"KVFinder-web provides simple access to a rapid and accurate method of cavity detection and characterization in any type of biomolecular structure, regardless of the molecule's nature.",FALSE,FALSE,"(0, 8, 'KVFinder', 'kvfinder')","Structural biology, Computational chemistry, Structure analysis, Protein structure analysis"
PMC10320092,"The KVFinder-web portal provides a simple, easy and straightforward pipeline on any web browser with interactive visualization capabilities powered by NGLVieweR and DataTable.",FALSE,FALSE,"(4, 12, 'KVFinder', 'kvfinder')","Structural biology, Computational chemistry, Structure analysis, Protein structure analysis"
PMC10320092,The graphical PyMOL plugin replicates the main features of parKVFinder PyMOL plugin with few limitations to avoid exhausting KVFinder-web service computational resources and to ensure a smooth and efficient operation for all users.,FALSE,FALSE,"(62, 70, 'KVFinder', 'kvfinder')","Structural biology, Computational chemistry, Structure analysis, Protein structure analysis"
PMC10320092,"Together with the KVFinder-web service, the KVFinder-web portal and PyMOL KVFinder-web Tools aim to democratize parKVFinder software and remove barriers for users who do not have the technical knowledge to install and configure a cavity detection software, who have restricted computational resources, or who just want to perform a simple and quick analysis.",FALSE,FALSE,"(18, 26, 'KVFinder', 'kvfinder')","Structural biology, Computational chemistry, Structure analysis, Protein structure analysis"
PMC10320092,The publicly available KVFinder-web service is accessible at https://kvfinder-web.cnpem.br.,FALSE,FALSE,"(23, 31, 'KVFinder', 'kvfinder')","Structural biology, Computational chemistry, Structure analysis, Protein structure analysis"
PMC10320092,"The corresponding open-source code of the KVFinder-web service, KVFinder-web portal, and PyMOL KVFinder-web Tools are available at https://github.com/LBC-LNBio/KVFinder-web-service (https://doi.org/10.5281/zenodo.7825790), https://github.com/LBC-LNBio/KVFinder-web-portal (https://doi.org/10.5281/zenodo.7825788), and https://github.com/LBC-LNBio/PyMOL-KVFinder-web-Tools (https://doi.org/10.5281/zenodo.7825798), respectively.",FALSE,FALSE,"(42, 50, 'KVFinder', 'kvfinder')","Structural biology, Computational chemistry, Structure analysis, Protein structure analysis"
PMC10320092,The complete documentation of the modules of the KVFinder-web application is available at https://lbc-lnbio.github.io/KVFinder-web/.,FALSE,FALSE,"(49, 57, 'KVFinder', 'kvfinder')","Structural biology, Computational chemistry, Structure analysis, Protein structure analysis"
PMC10320092,"In this scenario, we present KVFinder-web, an open-source web-based application of parKVFinder software for cavity detection and characterization of biomolecular structures.",FALSE,FALSE,"(29, 41, 'KVFinder-web', 'kvfinder-web')","Structural biology, Computational biology, Protein structural motifs and surfaces"
PMC10320092,The KVFinder-web has two independent components: a RESTful web service and a web graphical portal.,FALSE,FALSE,"(4, 16, 'KVFinder-web', 'kvfinder-web')","Structural biology, Computational biology, Protein structural motifs and surfaces"
PMC10320092,"Our web service, KVFinder-web service, handles client requests, manages accepted jobs, and performs cavity detection and characterization on accepted jobs.",FALSE,FALSE,"(17, 29, 'KVFinder-web', 'kvfinder-web')","Structural biology, Computational biology, Protein structural motifs and surfaces"
PMC10320092,"Our graphical web portal, KVFinder-web portal, provides a simple and straightforward page for cavity analysis, which customizes detection parameters, submits jobs to the web service component, and displays cavities and characterizations.",FALSE,FALSE,"(26, 38, 'KVFinder-web', 'kvfinder-web')","Structural biology, Computational biology, Protein structural motifs and surfaces"
PMC10320092,"We provide a publicly available KVFinder-web at https://kvfinder-web.cnpem.br, running in a cloud environment as docker containers.",FALSE,FALSE,"(32, 44, 'KVFinder-web', 'kvfinder-web')","Structural biology, Computational biology, Protein structural motifs and surfaces"
PMC10320092,"Further, this deployment type allows KVFinder-web components to be configured locally and customized according to user demand.",FALSE,FALSE,"(37, 49, 'KVFinder-web', 'kvfinder-web')","Structural biology, Computational biology, Protein structural motifs and surfaces"
PMC10320092,"Hence, users may run jobs on a locally configured service or our public KVFinder-web.",FALSE,FALSE,"(72, 84, 'KVFinder-web', 'kvfinder-web')","Structural biology, Computational biology, Protein structural motifs and surfaces"
PMC10320092,Graphical AbstractKVFinder-web: A web-based application for cavity detection and characterization of any type of biomolecular structure.,FALSE,FALSE,"(19, 31, 'KVFinder-web', 'kvfinder-web')","Structural biology, Computational biology, Protein structural motifs and surfaces"
PMC10320092,KVFinder-web: A web-based application for cavity detection and characterization of any type of biomolecular structure.,FALSE,FALSE,"(0, 12, 'KVFinder-web', 'kvfinder-web')","Structural biology, Computational biology, Protein structural motifs and surfaces"
PMC10320092,"In this scenario, we introduce KVFinder-web, an open-source web-based application of the parKVFinder software, consisting of a RESTful web service for cavity detection and characterization and a graphical web portal.",FALSE,FALSE,"(31, 43, 'KVFinder-web', 'kvfinder-web')","Structural biology, Computational biology, Protein structural motifs and surfaces"
PMC10320092,"KVFinder-web is a powerful web-based tool designed to detect cavities in a wide range of biomolecular structures, including but not limited to proteins and nucleic acids.",FALSE,FALSE,"(0, 12, 'KVFinder-web', 'kvfinder-web')","Structural biology, Computational biology, Protein structural motifs and surfaces"
PMC10320092,The interactive web interface (KVFinder-web portal) provides users an easy-to-use platform to execute the parKVFinder software and analyze the results through any web browser.,FALSE,FALSE,"(31, 43, 'KVFinder-web', 'kvfinder-web')","Structural biology, Computational biology, Protein structural motifs and surfaces"
PMC10320092,"Meanwhile, the web service (KVFinder-web service) itself executes parKVFinder (13) with its geometric grid-and-sphere-based method, as detailed in (2,4,13).",FALSE,FALSE,"(28, 40, 'KVFinder-web', 'kvfinder-web')","Structural biology, Computational biology, Protein structural motifs and surfaces"
PMC10320092,"To further enhance user experience, we also provide alternative client-side applications, including a Python HTTP client and a graphical PyMOL plugin (PyMOL KVFinder-web Tools).",FALSE,FALSE,"(157, 169, 'KVFinder-web', 'kvfinder-web')","Structural biology, Computational biology, Protein structural motifs and surfaces"
PMC10320092,"To ensure more comprehensive characterization, KVFinder-web has been integrated with additional features, such as depth calculation and Eisenberg & Weiss hydropathy characterization, which are implemented in pyKVFinder (4).",FALSE,FALSE,"(47, 59, 'KVFinder-web', 'kvfinder-web')","Structural biology, Computational biology, Protein structural motifs and surfaces"
PMC10320092,"The KVFinder-web portal (Figure 1; https://github.com/LBC-LNBio/KVFinder-web-portal), developed using the Shiny R package (14) (https://shiny.rstudio.com), provides a simple and straightforward website for cavity analysis and visualization, requiring only a biomolecule in Protein Data Bank (PDB) format or PDB ID.",FALSE,FALSE,"(4, 16, 'KVFinder-web', 'kvfinder-web')","Structural biology, Computational biology, Protein structural motifs and surfaces"
PMC10320092,KVFinder-web portal.,FALSE,FALSE,"(0, 12, 'KVFinder-web', 'kvfinder-web')","Structural biology, Computational biology, Protein structural motifs and surfaces"
PMC10320092,(A) Screenshot of the KVFinder-web portal main page showing the main tabs and the sections of target biomolecule input and choice of KVFinder-web run mode.,FALSE,FALSE,"(22, 34, 'KVFinder-web', 'kvfinder-web')","Structural biology, Computational biology, Protein structural motifs and surfaces"
PMC10320092,"After uploading the PDB, the KVFinder-web portal checks the PDB and informs non-standard residues detected [3].",FALSE,FALSE,"(29, 41, 'KVFinder-web', 'kvfinder-web')","Structural biology, Computational biology, Protein structural motifs and surfaces"
PMC10320092,"The ‘Run Cavity Analysis’ tab features the major functionalities of KVFinder-web, in which users can load a target biomolecule, customize the cavity detection parameters (‘Probe In’, ‘Probe Out’, ‘Removal Distance’, and ‘Volume Cutoff’), and download and visualize results.",FALSE,FALSE,"(68, 80, 'KVFinder-web', 'kvfinder-web')","Structural biology, Computational biology, Protein structural motifs and surfaces"
PMC10320092,"To execute KVFinder-web (Figure 1B), users must first choose a biomolecule and then select an appropriate run mode.",FALSE,FALSE,"(11, 23, 'KVFinder-web', 'kvfinder-web')","Structural biology, Computational biology, Protein structural motifs and surfaces"
PMC10320092,KVFinder-web allows users to submit any kind of target biomolecule for cavity analysis (Figure 1B).,FALSE,FALSE,"(0, 12, 'KVFinder-web', 'kvfinder-web')","Structural biology, Computational biology, Protein structural motifs and surfaces"
PMC10320092,"After completing these two steps, users submit the job to the KVFinder-web service by clicking the ‘Submit the job’ button.",FALSE,FALSE,"(62, 74, 'KVFinder-web', 'kvfinder-web')","Structural biology, Computational biology, Protein structural motifs and surfaces"
PMC10320092,The KVFinder-web portal provides an easy and interactive way to download and visualize cavity detection results.,FALSE,FALSE,"(4, 16, 'KVFinder-web', 'kvfinder-web')","Structural biology, Computational biology, Protein structural motifs and surfaces"
PMC10320092,Results and visualization in KVFinder-web portal.,FALSE,FALSE,"(29, 41, 'KVFinder-web', 'kvfinder-web')","Structural biology, Computational biology, Protein structural motifs and surfaces"
PMC10320092,(A) Screenshot of the results section of the KVFinder-web portal.,FALSE,FALSE,"(45, 57, 'KVFinder-web', 'kvfinder-web')","Structural biology, Computational biology, Protein structural motifs and surfaces"
PMC10320092,The KVFinder-web service (https://github.com/LBC-LNBio/KVFinder-web-service) is a RESTful service with a Web-Queue-Worker architecture.,FALSE,FALSE,"(4, 16, 'KVFinder-web', 'kvfinder-web')","Structural biology, Computational biology, Protein structural motifs and surfaces"
PMC10320092,"Each KVFinder-web service module is packaged in a Docker container (21), making it available to run in local or cloud computing environments.",FALSE,FALSE,"(5, 17, 'KVFinder-web', 'kvfinder-web')","Structural biology, Computational biology, Protein structural motifs and surfaces"
PMC10320092,"Besides our publicly available KVFinder-web service, a local web service can also be configured on third-party platforms, such as institutional servers or cloud services, using parKVFinder as a service (SaaS).",FALSE,FALSE,"(31, 43, 'KVFinder-web', 'kvfinder-web')","Structural biology, Computational biology, Protein structural motifs and surfaces"
PMC10320092,"The KVFinder-web service has some limitations compared to a standalone version of parKVFinder, which are designed to prevent very demanding jobs from exhausting the web service.",FALSE,FALSE,"(4, 16, 'KVFinder-web', 'kvfinder-web')","Structural biology, Computational biology, Protein structural motifs and surfaces"
PMC10320092,"The KVFinder-web application components (KVFinder-web service and KVFinder-web portal) will be continuously improved and updated to meet the needs of the scientific community, including new characterizations and performance enhancements.",FALSE,FALSE,"(4, 16, 'KVFinder-web', 'kvfinder-web')","Structural biology, Computational biology, Protein structural motifs and surfaces"
PMC10320092,"In addition to the primary interaction mode of KVFinder-web, we also provide additional client-side applications, such as PyMOL KVFinder-web and an example of a Python HTTP client, which broaden the range of possibilities for user interaction.",FALSE,FALSE,"(47, 59, 'KVFinder-web', 'kvfinder-web')","Structural biology, Computational biology, Protein structural motifs and surfaces"
PMC10320092,"For users familiarized with PyMOL (16), PyMOL KVFinder-web Tools (Supplementary Figure S1; https://github.com/LBC-LNBio/PyMOL-KVFinder-web-Tools), developed in Python3 and Qt, integrates the KVFinder-web service with the molecular visualization software.",FALSE,FALSE,"(46, 58, 'KVFinder-web', 'kvfinder-web')","Structural biology, Computational biology, Protein structural motifs and surfaces"
PMC10320092,This user-friendly graphical user interface (GUI) enables customization of detection parameters for a target biomolecular structure and submits jobs to a configured KVFinder-web service (Supplementary Figure S1A).,FALSE,FALSE,"(165, 177, 'KVFinder-web', 'kvfinder-web')","Structural biology, Computational biology, Protein structural motifs and surfaces"
PMC10320092,"After successful submission, accepted jobs are routinely and asynchronously requested to the KVFinder-web service.",FALSE,FALSE,"(93, 105, 'KVFinder-web', 'kvfinder-web')","Structural biology, Computational biology, Protein structural motifs and surfaces"
PMC10320092,"This graphical plugin operates in a similar way to KVFinder-web portal, the characterizations are shown in lists (Supplementary Figure S1B) and the cavities customized by their properties in PyMOL viewer (Supplementary Figure S1C and D).",FALSE,FALSE,"(51, 63, 'KVFinder-web', 'kvfinder-web')","Structural biology, Computational biology, Protein structural motifs and surfaces"
PMC10320092,"Nevertheless, submitted jobs in the KVFinder-web portal can be loaded in PyMOL KVFinder-web Tools and vice versa.",FALSE,FALSE,"(36, 48, 'KVFinder-web', 'kvfinder-web')","Structural biology, Computational biology, Protein structural motifs and surfaces"
PMC10320092,The KVFinder-web portal and PyMOL KVFinder-web Tools may not fully fulfill the needs of advanced users.,FALSE,FALSE,"(4, 16, 'KVFinder-web', 'kvfinder-web')","Structural biology, Computational biology, Protein structural motifs and surfaces"
PMC10320092,This client operates using standard parKVFinder input syntax and provides tools to interact with a configured KVFinder-web service.,FALSE,FALSE,"(110, 122, 'KVFinder-web', 'kvfinder-web')","Structural biology, Computational biology, Protein structural motifs and surfaces"
PMC10320092,"The KVFinder-web service is publicly available at https://kvfinder-web.cnpem.br, which is free and open to all users without login requirement.",FALSE,FALSE,"(4, 16, 'KVFinder-web', 'kvfinder-web')","Structural biology, Computational biology, Protein structural motifs and surfaces"
PMC10320092,"As an illustrative example of KVFinder-web (Figure 3), we detected and characterized the catalytic site of the Human Immunodeficiency Virus type 1 (HIV-1) protease bound to cyclic urea carbonyl oxygen (22), using KVFinder-web portal.",FALSE,FALSE,"(30, 42, 'KVFinder-web', 'kvfinder-web')","Structural biology, Computational biology, Protein structural motifs and surfaces"
PMC10320092,"Besides cavity detection and shape definition, KVFinder-web also provides the volume, area, depth and hydropathy of the detected cavities (Figure 2; cavity KAG).",FALSE,FALSE,"(47, 59, 'KVFinder-web', 'kvfinder-web')","Structural biology, Computational biology, Protein structural motifs and surfaces"
PMC10320092,"The cavity detection implemented in the KVFinder-web application has been extensively benchmarked against other well-known cavity detection methods in the literature (2,4,13), presenting robust detection and computational performance.",FALSE,FALSE,"(40, 52, 'KVFinder-web', 'kvfinder-web')","Structural biology, Computational biology, Protein structural motifs and surfaces"
PMC10320092,"In addition, we evaluated KVFinder-web computational performance with a protein structure dataset from (13), varying two major parameters related to cavity detection: ‘Probe Out’ and ‘Removal Distance’ (Figure 4).",FALSE,FALSE,"(26, 38, 'KVFinder-web', 'kvfinder-web')","Structural biology, Computational biology, Protein structural motifs and surfaces"
PMC10320092,"Thus, greater ‘Probe Out’ sizes tend to reduce the degree of accessibility of the molecular surface created and ultimately, increase the elapsed time to perform calculations in KVFinder-web service (Figure 4A).",FALSE,FALSE,"(177, 189, 'KVFinder-web', 'kvfinder-web')","Structural biology, Computational biology, Protein structural motifs and surfaces"
PMC10320092,Effects of detection parameters on KVFinder-web service performance.,FALSE,FALSE,"(35, 47, 'KVFinder-web', 'kvfinder-web')","Structural biology, Computational biology, Protein structural motifs and surfaces"
PMC10320092,"KVFinder-web provides simple access to a rapid and accurate method of cavity detection and characterization in any type of biomolecular structure, regardless of the molecule's nature.",FALSE,FALSE,"(0, 12, 'KVFinder-web', 'kvfinder-web')","Structural biology, Computational biology, Protein structural motifs and surfaces"
PMC10320092,"The KVFinder-web portal provides a simple, easy and straightforward pipeline on any web browser with interactive visualization capabilities powered by NGLVieweR and DataTable.",FALSE,FALSE,"(4, 16, 'KVFinder-web', 'kvfinder-web')","Structural biology, Computational biology, Protein structural motifs and surfaces"
PMC10320092,The graphical PyMOL plugin replicates the main features of parKVFinder PyMOL plugin with few limitations to avoid exhausting KVFinder-web service computational resources and to ensure a smooth and efficient operation for all users.,FALSE,FALSE,"(125, 137, 'KVFinder-web', 'kvfinder-web')","Structural biology, Computational biology, Protein structural motifs and surfaces"
PMC10320092,"Together with the KVFinder-web service, the KVFinder-web portal and PyMOL KVFinder-web Tools aim to democratize parKVFinder software and remove barriers for users who do not have the technical knowledge to install and configure a cavity detection software, who have restricted computational resources, or who just want to perform a simple and quick analysis.",FALSE,FALSE,"(18, 30, 'KVFinder-web', 'kvfinder-web')","Structural biology, Computational biology, Protein structural motifs and surfaces"
PMC10320092,The publicly available KVFinder-web service is accessible at https://kvfinder-web.cnpem.br.,FALSE,FALSE,"(23, 35, 'KVFinder-web', 'kvfinder-web')","Structural biology, Computational biology, Protein structural motifs and surfaces"
PMC10320092,"The corresponding open-source code of the KVFinder-web service, KVFinder-web portal, and PyMOL KVFinder-web Tools are available at https://github.com/LBC-LNBio/KVFinder-web-service (https://doi.org/10.5281/zenodo.7825790), https://github.com/LBC-LNBio/KVFinder-web-portal (https://doi.org/10.5281/zenodo.7825788), and https://github.com/LBC-LNBio/PyMOL-KVFinder-web-Tools (https://doi.org/10.5281/zenodo.7825798), respectively.",FALSE,FALSE,"(42, 54, 'KVFinder-web', 'kvfinder-web')","Structural biology, Computational biology, Protein structural motifs and surfaces"
PMC10320092,The complete documentation of the modules of the KVFinder-web application is available at https://lbc-lnbio.github.io/KVFinder-web/.,FALSE,FALSE,"(49, 61, 'KVFinder-web', 'kvfinder-web')","Structural biology, Computational biology, Protein structural motifs and surfaces"
PMC8685811,"To fulfill this need, we developed pyKVFinder, a Python package to detect and characterize cavities in biomolecular structures for data science and automated pipelines.",FALSE,FALSE,"(35, 45, 'pyKVFinder', 'pykvfinder')","Structure analysis, Workflows, Mathematics, Structural biology, Machine learning, Computational chemistry, Protein structural motifs and surfaces"
PMC8685811,"pyKVFinder efficiently detects cavities in biomolecular structures and computes their volume, area, depth and hydropathy, storing these cavity properties in NumPy arrays.",FALSE,FALSE,"(0, 10, 'pyKVFinder', 'pykvfinder')","Structure analysis, Workflows, Mathematics, Structural biology, Machine learning, Computational chemistry, Protein structural motifs and surfaces"
PMC8685811,"Benefited from Python ecosystem interoperability and data structures, pyKVFinder can be integrated with third-party scientific packages and libraries for mathematical calculations, machine learning and 3D visualization in automated workflows.",FALSE,FALSE,"(70, 80, 'pyKVFinder', 'pykvfinder')","Structure analysis, Workflows, Mathematics, Structural biology, Machine learning, Computational chemistry, Protein structural motifs and surfaces"
PMC8685811,"As proof of pyKVFinder’s capabilities, we successfully identified and compared ADRP substrate-binding site of SARS-CoV-2 and a set of homologous proteins with pyKVFinder, showing its integrability with data science packages such as matplotlib, NGL Viewer, SciPy and Jupyter notebook.",FALSE,FALSE,"(12, 22, 'pyKVFinder', 'pykvfinder')","Structure analysis, Workflows, Mathematics, Structural biology, Machine learning, Computational chemistry, Protein structural motifs and surfaces"
PMC8685811,pyKVFinder facilitates biostructural data analysis with scripting routines in the Python ecosystem and can be building blocks for data science and drug design applications.,FALSE,FALSE,"(0, 10, 'pyKVFinder', 'pykvfinder')","Structure analysis, Workflows, Mathematics, Structural biology, Machine learning, Computational chemistry, Protein structural motifs and surfaces"
PMC8685811,"In this scenario, we developed pyKVFinder, an open-source python package for cavity detection and characterization abstracted into multidimensional arrays.",FALSE,FALSE,"(31, 41, 'pyKVFinder', 'pykvfinder')","Structure analysis, Workflows, Mathematics, Structural biology, Machine learning, Computational chemistry, Protein structural motifs and surfaces"
PMC8685811,"pyKVFinder adopts the original geometrical grid-and-sphere-based detection method as implemented in KVFinder [7], which has been improved in the latest parallel version, parKVFinder [8].",FALSE,FALSE,"(0, 10, 'pyKVFinder', 'pykvfinder')","Structure analysis, Workflows, Mathematics, Structural biology, Machine learning, Computational chemistry, Protein structural motifs and surfaces"
PMC8685811,"To fulfill this need, pyKVFinder is wrapped into Python and, using Python’s well-established data structure (e.",FALSE,FALSE,"(22, 32, 'pyKVFinder', 'pykvfinder')","Structure analysis, Workflows, Mathematics, Structural biology, Machine learning, Computational chemistry, Protein structural motifs and surfaces"
PMC8685811,"pyKVFinder can be integrated with third-party scientific packages and libraries for mathematical calculations, statistical analysis, and tridimensional visualization.",FALSE,FALSE,"(0, 10, 'pyKVFinder', 'pykvfinder')","Structure analysis, Workflows, Mathematics, Structural biology, Machine learning, Computational chemistry, Protein structural motifs and surfaces"
PMC8685811,"Moreover, users can explore the functionality of pyKVFinder step-by-step using interactive interfaces, such as IPython/Jupyter notebooks.",FALSE,FALSE,"(49, 59, 'pyKVFinder', 'pykvfinder')","Structure analysis, Workflows, Mathematics, Structural biology, Machine learning, Computational chemistry, Protein structural motifs and surfaces"
PMC8685811,"As mentioned above, one of pyKVFinder’s main contributions in data science workflows is to translate the detected cavities from tridimensional coordinates of cavity points to NumPy arrays, a data structure that allows for a wide diversity of scientific computation and efficient storage and access to N-dimensional arrays (ndarrays), also called tensors [19].",FALSE,FALSE,"(27, 37, 'pyKVFinder', 'pykvfinder')","Structure analysis, Workflows, Mathematics, Structural biology, Machine learning, Computational chemistry, Protein structural motifs and surfaces"
PMC8685811,"Besides conventional cavity properties such as volume and area, which are stored as Python dictionaries, pyKVFinder computes cavity depth and hydropathy.",FALSE,FALSE,"(105, 115, 'pyKVFinder', 'pykvfinder')","Structure analysis, Workflows, Mathematics, Structural biology, Machine learning, Computational chemistry, Protein structural motifs and surfaces"
PMC8685811,"Thus, pyKVFinder provides a versatile way to detect and characterize biomolecular cavities and integrate this information into data science or automated workflows.",FALSE,FALSE,"(6, 16, 'pyKVFinder', 'pykvfinder')","Structure analysis, Workflows, Mathematics, Structural biology, Machine learning, Computational chemistry, Protein structural motifs and surfaces"
PMC8685811,"Python-C parallel KVFinder (pyKVFinder) applies a Simplified Wrapper and Interface Generator (SWIG; http://www.swig.org/) to extend grid operations written in C to Python, a high-level programming language.",FALSE,FALSE,"(28, 38, 'pyKVFinder', 'pykvfinder')","Structure analysis, Workflows, Mathematics, Structural biology, Machine learning, Computational chemistry, Protein structural motifs and surfaces"
PMC8685811,pyKVFinder can be easily installed with the pip package management system.,FALSE,FALSE,"(0, 10, 'pyKVFinder', 'pykvfinder')","Structure analysis, Workflows, Mathematics, Structural biology, Machine learning, Computational chemistry, Protein structural motifs and surfaces"
PMC8685811,"In pyKVFinder, the target biomolecule is inserted into a regular 3D grid, which is stored as an ndarray, considering the van der Waals radii of the atoms.",FALSE,FALSE,"(3, 13, 'pyKVFinder', 'pykvfinder')","Structure analysis, Workflows, Mathematics, Structural biology, Machine learning, Computational chemistry, Protein structural motifs and surfaces"
PMC8685811,"To detect cavities, pyKVFinder uses a dual-probe algorithm that scans the biomolecular structure, as described in [7, 8].",FALSE,FALSE,"(20, 30, 'pyKVFinder', 'pykvfinder')","Structure analysis, Workflows, Mathematics, Structural biology, Machine learning, Computational chemistry, Protein structural motifs and surfaces"
PMC8685811,"On each detected cavity, pyKVFinder may perform spatial, depth, hydropathy and constitutional characterizations.",FALSE,FALSE,"(25, 35, 'pyKVFinder', 'pykvfinder')","Structure analysis, Workflows, Mathematics, Structural biology, Machine learning, Computational chemistry, Protein structural motifs and surfaces"
PMC8685811,pyKVFinder can be imported as a package in the Python environment and users can decide to run the full cavity detection and characterization workflow through the run_workflow function or run pyKVFinder functions in a stepwise fashion.,FALSE,FALSE,"(0, 10, 'pyKVFinder', 'pykvfinder')","Structure analysis, Workflows, Mathematics, Structural biology, Machine learning, Computational chemistry, Protein structural motifs and surfaces"
PMC8685811,"At the latter, users can integrate pyKVFinder functions into third-party Python packages and benefit from interactive IPython/Jupyter notebooks.",FALSE,FALSE,"(35, 45, 'pyKVFinder', 'pykvfinder')","Structure analysis, Workflows, Mathematics, Structural biology, Machine learning, Computational chemistry, Protein structural motifs and surfaces"
PMC8685811,"By running pyKVFinder in Python environment, users can visualize the detected cavities through the Python NGL Viewer widget [21].",FALSE,FALSE,"(11, 21, 'pyKVFinder', 'pykvfinder')","Structure analysis, Workflows, Mathematics, Structural biology, Machine learning, Computational chemistry, Protein structural motifs and surfaces"
PMC8685811,1Diagram of cavity detection and characterization workflow using pyKVFinder package.,FALSE,FALSE,"(65, 75, 'pyKVFinder', 'pykvfinder')","Structure analysis, Workflows, Mathematics, Structural biology, Machine learning, Computational chemistry, Protein structural motifs and surfaces"
PMC8685811,The flowchart illustrates function calls and their dependencies for performing cavity detection and characterization with pyKVFinder package,FALSE,FALSE,"(122, 132, 'pyKVFinder', 'pykvfinder')","Structure analysis, Workflows, Mathematics, Structural biology, Machine learning, Computational chemistry, Protein structural motifs and surfaces"
PMC8685811,Diagram of cavity detection and characterization workflow using pyKVFinder package.,FALSE,FALSE,"(64, 74, 'pyKVFinder', 'pykvfinder')","Structure analysis, Workflows, Mathematics, Structural biology, Machine learning, Computational chemistry, Protein structural motifs and surfaces"
PMC8685811,2Representative view of detected cavities in the pyKVFinder data structure.,FALSE,FALSE,"(49, 59, 'pyKVFinder', 'pykvfinder')","Structure analysis, Workflows, Mathematics, Structural biology, Machine learning, Computational chemistry, Protein structural motifs and surfaces"
PMC8685811,"Based on a 3D grid (left figure), pyKVFinder detects cavities in biomolecules and returns an ndarray with dimensions (m, n, o) (right figure).",FALSE,FALSE,"(34, 44, 'pyKVFinder', 'pykvfinder')","Structure analysis, Workflows, Mathematics, Structural biology, Machine learning, Computational chemistry, Protein structural motifs and surfaces"
PMC8685811,Representative view of detected cavities in the pyKVFinder data structure.,FALSE,FALSE,"(48, 58, 'pyKVFinder', 'pykvfinder')","Structure analysis, Workflows, Mathematics, Structural biology, Machine learning, Computational chemistry, Protein structural motifs and surfaces"
PMC8685811,"With the ndarray of detected cavities, pyKVFinder package may perform four characterization procedures, i.e., spatial, constitutional, depth and hydropathy characterizations.",FALSE,FALSE,"(39, 49, 'pyKVFinder', 'pykvfinder')","Structure analysis, Workflows, Mathematics, Structural biology, Machine learning, Computational chemistry, Protein structural motifs and surfaces"
PMC8685811,a Three different characterizations of the apo ADRP substrate-binding cavity of SARS-CoV-2 (PDB ID: 6WEN) using pyKVFinder.,FALSE,FALSE,"(112, 122, 'pyKVFinder', 'pykvfinder')","Structure analysis, Workflows, Mathematics, Structural biology, Machine learning, Computational chemistry, Protein structural motifs and surfaces"
PMC8685811,c Hydropathy profile of the same compared cavities collected from pyKVFinder ndarrays.,FALSE,FALSE,"(66, 76, 'pyKVFinder', 'pykvfinder')","Structure analysis, Workflows, Mathematics, Structural biology, Machine learning, Computational chemistry, Protein structural motifs and surfaces"
PMC8685811,"The cavity detection and characterization objects, from detect, spatial, constitutional, calculate_frequencies, depth, hydropathy functions, can be stored into a pyKVFinderResults class that accumulates them in its attributes.",FALSE,FALSE,"(162, 172, 'pyKVFinder', 'pykvfinder')","Structure analysis, Workflows, Mathematics, Structural biology, Machine learning, Computational chemistry, Protein structural motifs and surfaces"
PMC8685811,"In this scenario, the export, write and plot_frequencies methods have their counterparts in the export, write_results and plot_frequencies functions of pyKVFinder package, respectively.",FALSE,FALSE,"(152, 162, 'pyKVFinder', 'pykvfinder')","Structure analysis, Workflows, Mathematics, Structural biology, Machine learning, Computational chemistry, Protein structural motifs and surfaces"
PMC8685811,"Additionally, the read_cavity function reads a cavity file (.pdb extension), written by pyKVFinder, parKVFinder or KVFinder, and a target PDB or XYZ file (.pdb or.xyz extension), and returns an ndarray with each element corresponding to the cavity space (> 1), biomolecule space (0), or bulk or empty space (− 1), similar to the output of the detect function.",FALSE,FALSE,"(88, 98, 'pyKVFinder', 'pykvfinder')","Structure analysis, Workflows, Mathematics, Structural biology, Machine learning, Computational chemistry, Protein structural motifs and surfaces"
PMC8685811,"To demonstrate the use of pyKVFinder and how it benefits from the Python ecosystem, we identified the substrate-binding pocket of the ADP-ribose phosphatase (ADRP) domain of SARS-CoV-2 nsp3 protein in the apo form (PDB ID: 6WEN).",FALSE,FALSE,"(26, 36, 'pyKVFinder', 'pykvfinder')","Structure analysis, Workflows, Mathematics, Structural biology, Machine learning, Computational chemistry, Protein structural motifs and surfaces"
PMC8685811,"pyKVFinder successfully detected the ADRP substrate-binding cavity and determined traditional cavity properties such as volume, area and residues surrounding the ADP-ribose cavity (Fig.",FALSE,FALSE,"(0, 10, 'pyKVFinder', 'pykvfinder')","Structure analysis, Workflows, Mathematics, Structural biology, Machine learning, Computational chemistry, Protein structural motifs and surfaces"
PMC8685811,"For instance, we used pyKVFinder calculate_frequencies and plot_frequencies functions to determine the composition of the type of residues surrounding the cavity and plotted this composition as a bar chart (Additional file 1: Fig.",FALSE,FALSE,"(22, 32, 'pyKVFinder', 'pykvfinder')","Structure analysis, Workflows, Mathematics, Structural biology, Machine learning, Computational chemistry, Protein structural motifs and surfaces"
PMC8685811,"In pyKVFinder, this step is performed using matplotlib library [38], but users are free to analyze data and present results on their favorite graphing library.",FALSE,FALSE,"(3, 13, 'pyKVFinder', 'pykvfinder')","Structure analysis, Workflows, Mathematics, Structural biology, Machine learning, Computational chemistry, Protein structural motifs and surfaces"
PMC8685811,"The standard workflow of pyKVFinder, as in parKVFinder, detects cavities and applies spatial and constitutional characterizations.",FALSE,FALSE,"(25, 35, 'pyKVFinder', 'pykvfinder')","Structure analysis, Workflows, Mathematics, Structural biology, Machine learning, Computational chemistry, Protein structural motifs and surfaces"
PMC8685811,The full workflow of pyKVFinder comprises standard workflow with depth and hydropathy characterizations,FALSE,FALSE,"(21, 31, 'pyKVFinder', 'pykvfinder')","Structure analysis, Workflows, Mathematics, Structural biology, Machine learning, Computational chemistry, Protein structural motifs and surfaces"
PMC8685811,"Since pyKVFinder stores the properties to be colored in cavities in the B-factor column of a PDB-formatted file, users can easily change the style and color scheme in most of molecular visualization programs.",FALSE,FALSE,"(6, 16, 'pyKVFinder', 'pykvfinder')","Structure analysis, Workflows, Mathematics, Structural biology, Machine learning, Computational chemistry, Protein structural motifs and surfaces"
PMC8685811,"For this reason, we used pyKVFinder to detect the ADRP substrate-binding site in aligned ADRP domains from different species and compare their properties.",FALSE,FALSE,"(25, 35, 'pyKVFinder', 'pykvfinder')","Structure analysis, Workflows, Mathematics, Structural biology, Machine learning, Computational chemistry, Protein structural motifs and surfaces"
PMC8685811,"Finally, since pyKVFinder uses native Python dictionaries to store the residues surrounding the detected cavity, we can easily tabulate the residue frequency.",FALSE,FALSE,"(15, 25, 'pyKVFinder', 'pykvfinder')","Structure analysis, Workflows, Mathematics, Structural biology, Machine learning, Computational chemistry, Protein structural motifs and surfaces"
PMC8685811,"Thus, we used pyKVFinder with its box adjustment mode to detect and estimate the volume of the ADP-ribose binding site throughout 600 frames of the ADRP domain’s trajectory.",FALSE,FALSE,"(14, 24, 'pyKVFinder', 'pykvfinder')","Structure analysis, Workflows, Mathematics, Structural biology, Machine learning, Computational chemistry, Protein structural motifs and surfaces"
PMC8685811,"The shape of the detected cavities defined by pyKVFinder and parKVFinder finely adjust to the original ligand in the binding site, as well as MSPocket (Fig.",FALSE,FALSE,"(46, 56, 'pyKVFinder', 'pykvfinder')","Structure analysis, Workflows, Mathematics, Structural biology, Machine learning, Computational chemistry, Protein structural motifs and surfaces"
PMC8685811,"4a) Besides that, the volume calculated by pyKVFinder (346.8 ± 78.7 Å3) and parKVFinder (346.5 ± 79.3 Å3) is closely related to the volume of ADP-ribose (351.1 Å3; molecular surface volume estimated by YASARA program [40]), the ligand that originally occupied the binding site in the crystallographic structure used in the molecular dynamics simulations (Fig.",FALSE,FALSE,"(43, 53, 'pyKVFinder', 'pykvfinder')","Structure analysis, Workflows, Mathematics, Structural biology, Machine learning, Computational chemistry, Protein structural motifs and surfaces"
PMC8685811,"For instance, pyKVFinder, parKVFinder and POVME can segment the search space, which trims points outside this custom space, while the other methods only explore the whole structure, which includes neighboring regions at the binding site.",FALSE,FALSE,"(14, 24, 'pyKVFinder', 'pykvfinder')","Structure analysis, Workflows, Mathematics, Structural biology, Machine learning, Computational chemistry, Protein structural motifs and surfaces"
PMC8685811,pyKVFinder outperformed all analyzed methods.,FALSE,FALSE,"(0, 10, 'pyKVFinder', 'pykvfinder')","Structure analysis, Workflows, Mathematics, Structural biology, Machine learning, Computational chemistry, Protein structural motifs and surfaces"
PMC8685811,"Even when applying the newly available characterization, depth and hydropathy, pyKVFinder's elapsed time only increased 36%, still outperforming other benchmarking methods.",FALSE,FALSE,"(79, 89, 'pyKVFinder', 'pykvfinder')","Structure analysis, Workflows, Mathematics, Structural biology, Machine learning, Computational chemistry, Protein structural motifs and surfaces"
PMC8685811,"Further, compared to its counterpart, parKVFinder, pyKVFinder was 3.3 times faster in detecting ADRP binding site.",FALSE,FALSE,"(51, 61, 'pyKVFinder', 'pykvfinder')","Structure analysis, Workflows, Mathematics, Structural biology, Machine learning, Computational chemistry, Protein structural motifs and surfaces"
PMC8685811,"Hence, experienced users requiring scripting routines are encouraged to use pyKVFinder due to its improved performance, while newcomers should prioritize parKVFinder due to its simplicity of installation and execution.",FALSE,FALSE,"(76, 86, 'pyKVFinder', 'pykvfinder')","Structure analysis, Workflows, Mathematics, Structural biology, Machine learning, Computational chemistry, Protein structural motifs and surfaces"
PMC8685811,"Further, the scalability of pyKVFinder, upon increasing number of threads, follows the same behavior presented by parKVFinder [8].",FALSE,FALSE,"(28, 38, 'pyKVFinder', 'pykvfinder')","Structure analysis, Workflows, Mathematics, Structural biology, Machine learning, Computational chemistry, Protein structural motifs and surfaces"
PMC8685811,"However, the cavities data structure is only accessible inside the Python ecosystem in pyKVFinder, which provides ndarrays and Python dictionaries.",FALSE,FALSE,"(87, 97, 'pyKVFinder', 'pykvfinder')","Structure analysis, Workflows, Mathematics, Structural biology, Machine learning, Computational chemistry, Protein structural motifs and surfaces"
PMC8685811,"pyKVFinder will undergo continuous improvements and updates, according to its applications by the scientific community.",FALSE,FALSE,"(0, 10, 'pyKVFinder', 'pykvfinder')","Structure analysis, Workflows, Mathematics, Structural biology, Machine learning, Computational chemistry, Protein structural motifs and surfaces"
PMC8685811,"Additionally, pyKVFinder aims to offload its routines to the GPU for performance enhancement in data-intensive applications.",FALSE,FALSE,"(14, 24, 'pyKVFinder', 'pykvfinder')","Structure analysis, Workflows, Mathematics, Structural biology, Machine learning, Computational chemistry, Protein structural motifs and surfaces"
PMC8685811,pyKVFinder provides an efficient and integrable Python package for cavity detection and characterization in biomolecular structures for data science and automated pipelines.,FALSE,FALSE,"(0, 10, 'pyKVFinder', 'pykvfinder')","Structure analysis, Workflows, Mathematics, Structural biology, Machine learning, Computational chemistry, Protein structural motifs and surfaces"
PMC8685811,"In addition to fast, accurate and efficient cavity detection and characterization, pyKVFinder stores spatial and physicochemical properties in Python ndarrays, that ease scripting and data analysis.",FALSE,FALSE,"(83, 93, 'pyKVFinder', 'pykvfinder')","Structure analysis, Workflows, Mathematics, Structural biology, Machine learning, Computational chemistry, Protein structural motifs and surfaces"
PMC8685811,"Further, pyKVFinder performance was benchmarked against well-known geometrical methods for cavity detection and characterization.",FALSE,FALSE,"(9, 19, 'pyKVFinder', 'pykvfinder')","Structure analysis, Workflows, Mathematics, Structural biology, Machine learning, Computational chemistry, Protein structural motifs and surfaces"
PMC8685811,"Finally, we have successfully shown an application of pyKVFinder integration with matplotlib, NGL Viewer, SciPy and Jupyter notebook, that compared the ADRP substrate-binding site of SARS-CoV-2 in homologous proteins.",FALSE,FALSE,"(54, 64, 'pyKVFinder', 'pykvfinder')","Structure analysis, Workflows, Mathematics, Structural biology, Machine learning, Computational chemistry, Protein structural motifs and surfaces"
PMC8685811," Project name: pyKVFinderProject home page: https://github.com/LBC-LNBio/pyKVFinderOperating system(s): any supporting Python > = 3.7 (tested on Linux and macOS)Programming language: Python, COther requirements: swig > = 4.0.1, toml > = 0.10.2, numpy > = 1.20.3, matplotlib > = 3.3.3License: GNU General Public License v3.0Any restrictions to use by non-academics: None.",FALSE,FALSE,"(15, 25, 'pyKVFinder', 'pykvfinder')","Structure analysis, Workflows, Mathematics, Structural biology, Machine learning, Computational chemistry, Protein structural motifs and surfaces"
PMC8685811,Project name: pyKVFinder,FALSE,FALSE,"(14, 24, 'pyKVFinder', 'pykvfinder')","Structure analysis, Workflows, Mathematics, Structural biology, Machine learning, Computational chemistry, Protein structural motifs and surfaces"
PMC8685811,Project home page: https://github.com/LBC-LNBio/pyKVFinder,FALSE,FALSE,"(48, 58, 'pyKVFinder', 'pykvfinder')","Structure analysis, Workflows, Mathematics, Structural biology, Machine learning, Computational chemistry, Protein structural motifs and surfaces"
PMC8685811,"pyKVFinder source code, documentation and tutorials are available in the Python Package Index (PyPI) repository, https://pypi.org/project/pyKVFinder, and the GitHub repository, https://github.com/LBC-LNBio/pyKVFinder.",FALSE,FALSE,"(0, 10, 'pyKVFinder', 'pykvfinder')","Structure analysis, Workflows, Mathematics, Structural biology, Machine learning, Computational chemistry, Protein structural motifs and surfaces"
PMC8685811,"Documentation and tutorials are available at pyKVFinder webpage, https://lbc-lnbio.github.io/pyKVFinder.",FALSE,FALSE,"(45, 55, 'pyKVFinder', 'pykvfinder')","Structure analysis, Workflows, Mathematics, Structural biology, Machine learning, Computational chemistry, Protein structural motifs and surfaces"
PMC9341511,"Tests on both simulated and real data sets show that TransMeta consistently outperforms PsiCLASS, StringTie2 plus its merge mode, and Scallop plus TACO, the most popular tools, in terms of precision and recall under a wide range of coverage thresholds at the meta-assembly level.",FALSE,FALSE,"(88, 96, 'PsiCLASS', 'psiclass')",Sequence assembly
PMC9341511,"The second paradigm, such as the state-of-the-art meta-assembly tool PsiCLASS (Song et al.",FALSE,FALSE,"(69, 77, 'PsiCLASS', 'psiclass')",Sequence assembly
PMC9341511,PsiCLASS uses statistical methods to build the global subexon graphs and generates the assembly by dynamic programming optimization and voting algorithms.,FALSE,FALSE,"(0, 8, 'PsiCLASS', 'psiclass')",Sequence assembly
PMC9341511,"We evaluated the performance of TransMeta at both the meta-assembly level and the individual sample level by comparing it with the state-of-the-art multisample assembler PsiCLASS, which can produce a meta-assembly for multiple samples and a certain set of transcripts for each individual sample as well.",FALSE,FALSE,"(170, 178, 'PsiCLASS', 'psiclass')",Sequence assembly
PMC9341511,"(2019) for their evaluation of PsiCLASS, we benchmarked the TransMeta under two widely used aligners, HISAT2 and STAR, in terms of the standard criteria that have been widely used in evaluation of transcriptome assemblers.",FALSE,FALSE,"(31, 39, 'PsiCLASS', 'psiclass')",Sequence assembly
PMC9341511,"On the three simulated data sets under the HISAT2 and STAR alignments, we ran TransMeta and PsiCLASS with different filtering thresholds to get the sets of meta-assemblies, then ran StringTie2 and Scallop with their default settings for each individual sample, and finally merged them by using StringTie2-Merge and TACO, respectively, with different filtering thresholds.",FALSE,FALSE,"(92, 100, 'PsiCLASS', 'psiclass')",Sequence assembly
PMC9341511,"Specifically, on the simulated data set S1 under the HISAT2 alignments, when we adjusted the coverage thresholds of all the assemblers to set their assemblies all to the precision of 0.7 (or any other value), the recall of TransMeta reached about 0.38, which is ∼20% higher than that of PsiCLASS, ∼41% higher than StringTie2 system, and ∼90% higher than Scallop + TACO (Fig.",FALSE,FALSE,"(287, 295, 'PsiCLASS', 'psiclass')",Sequence assembly
PMC9341511,"Evaluated based on the areas under the precision-recall curve (AUC) scores, we found that the AUC score of TransMeta was ∼13.7% higher than that of PsiCLASS, 22.3% higher than that of StringTie2 system, and 49.8% higher than that of Scallop + TACO.",FALSE,FALSE,"(148, 156, 'PsiCLASS', 'psiclass')",Sequence assembly
PMC9341511,"TransMeta and PsiCLASS are the so-called meta-assemblers, but they may also produce a certain set of transcripts for each sample.",FALSE,FALSE,"(14, 22, 'PsiCLASS', 'psiclass')",Sequence assembly
PMC9341511,"Specifically, averaged on the 20 samples of data set S1 under the HISAT2 alignments, the recall of TransMeta reached about 0.38, which was ∼5.6% higher than that of PsiCLASS and >11.4% higher than those of StringTie2 and Scallop.",FALSE,FALSE,"(165, 173, 'PsiCLASS', 'psiclass')",Sequence assembly
PMC9341511,(2019) in their evaluation of PsiCLASS.,FALSE,FALSE,"(30, 38, 'PsiCLASS', 'psiclass')",Sequence assembly
PMC9341511,"Then on the five tested data sets R1–R5 under the HISAT2 alignments, the recalls of TransMeta reached about 0.11, 0.15, 0.16, 0.14, and 0.17, respectively; those of the second-best assembler PsiCLASS were about 0.07, 0.11, 0.12, 0.11, and 0.14, respectively; those of StringTie2 were about 0.05, 0.09, 0.11, 0.09, and 0.12, respectively; and those of Scallop + TACO were relatively worse.",FALSE,FALSE,"(191, 199, 'PsiCLASS', 'psiclass')",Sequence assembly
PMC9341511,"It means that under the same precision level, TransMeta correctly identified ∼21%–57% more transcripts than PsiCLASS and 42%–120% more than the StringTie2 system.",FALSE,FALSE,"(108, 116, 'PsiCLASS', 'psiclass')",Sequence assembly
PMC9341511,"Furthermore, in terms of the AUC, TransMeta showed an improvement of ∼17%–35% over PsiCLASS, as well as 19%–62% over the StringTie2 system on the five data sets, whereas Scallop + TACO showed relatively poor performance.",FALSE,FALSE,"(83, 91, 'PsiCLASS', 'psiclass')",Sequence assembly
PMC9341511,"For instance, averaged on the 73 samples from R1, TransMeta correctly reconstructed ∼19.6% more transcripts than PsiCLASS, as well as 62.1% and 75.2% more than the single-sample assemblers StringTie2 and Scallop, respectively.",FALSE,FALSE,"(113, 121, 'PsiCLASS', 'psiclass')",Sequence assembly
PMC9341511,"Meanwhile, its precision was the highest on all 73 samples, which were on average ∼15% higher than those of PsiCLASS and over twofold higher than those of StringTie2 and Scallop (Fig.",FALSE,FALSE,"(108, 116, 'PsiCLASS', 'psiclass')",Sequence assembly
PMC9341511,TransMeta and PsiCLASS are the so-called meta-assemblers that simultaneously analyze multiple samples.,FALSE,FALSE,"(14, 22, 'PsiCLASS', 'psiclass')",Sequence assembly
PMC9341511,"Based on the alignments, we ran TransMeta and PsiCLASS with different filtering thresholds.",FALSE,FALSE,"(46, 54, 'PsiCLASS', 'psiclass')",Sequence assembly
PMC9341511,Comparisons of TransMeta and PsiCLASS on the large-scale data sets under the HISAT2 alignments at the meta-assembly level.,FALSE,FALSE,"(29, 37, 'PsiCLASS', 'psiclass')",Sequence assembly
PMC9341511,"(A–E) Precision-recall curves of TransMeta and PsiCLASS on 100, 200, 300, 400, and 500 subsets of GEUVADIS samples.",FALSE,FALSE,"(47, 55, 'PsiCLASS', 'psiclass')",Sequence assembly
PMC9341511,"The meta-assemblers TransMeta and PsiCLASS were run with 25 threads, and the single-sample assemblers StringTie2 and Scallop were run sequentially to assemble individual samples.",FALSE,FALSE,"(34, 42, 'PsiCLASS', 'psiclass')",Sequence assembly
PMC9341511,"For instance, on data set R1 with 73 samples under the HISAT2 alignments, TransMeta took ∼133 min with a peak memory of 11 GB, whereas PsiCLASS took ∼228 min with a peak memory of 11.7 GB, StringTie2 took 188 min with <1 GB memory, and Scallop took 251 min with a peak memory of ∼4.9 GB.",FALSE,FALSE,"(135, 143, 'PsiCLASS', 'psiclass')",Sequence assembly
PMC11530086,"Information about the best performing definitions of IOH regarding 30-day mortality, hospital length of stay (hLOS), and postanesthesia care unit length of stay (PACU-LOS) is missing.",FALSE,TRUE,"(162, 166, 'PACU', 'pacu')","Phylogenetics, Sequence analysis"
PMC11530086,"First, we used one subset to choose the best fitting definitions of IOH for the outcomes 30-day mortality, hLOS, and PACU-LOS.",FALSE,TRUE,"(117, 121, 'PACU', 'pacu')","Phylogenetics, Sequence analysis"
PMC11530086,"The best fitting definitions were relative time with a MAP (mean arterial pressure) of <80 mmHg for 30-day mortality, lowest MAP for one minute for hLOS, and lowest MAP for one cumulative minute for PACU-LOS.",FALSE,TRUE,"(199, 203, 'PACU', 'pacu')","Phylogenetics, Sequence analysis"
PMC11530086,"Testing these three definitions of IOH in the independent second subset confirmed the associations of IOH with 30-day mortality, hLOS, and PACU-LOS.",FALSE,TRUE,"(139, 143, 'PACU', 'pacu')","Phylogenetics, Sequence analysis"
PMC11530086,"Using a data-driven approach, we identified the best fitting definitions of IOH for 30-day mortality, hLOS, and PACU-LOS.",FALSE,TRUE,"(112, 116, 'PACU', 'pacu')","Phylogenetics, Sequence analysis"
PMC11530086,"The main objective of this trial was to find the best fitting definitions of IOH and their associations with 30-day mortality, hospital LOS (hLOS), and postanesthesia care unit (PACU) LOS in a general surgical population at a large academic center.",FALSE,TRUE,"(178, 182, 'PACU', 'pacu')","Phylogenetics, Sequence analysis"
PMC11530086,PACU-LOS was defined as the difference between the date of discharge and the date of admission to the PACU.,FALSE,TRUE,"(0, 4, 'PACU', 'pacu')","Phylogenetics, Sequence analysis"
PMC11530086,The LOS and PACU-LOS datasets were subset of the mortality dataset.,FALSE,TRUE,"(12, 16, 'PACU', 'pacu')","Phylogenetics, Sequence analysis"
PMC11530086,"The statistical framework of this study was described similarly before in [21]: The aims of the study were structured into two sequential steps for each of the three outcomes (30-day mortality, hLOS and PACU LOS): 1) to determine which definition of hypotension has the strongest association with 30-day mortality, hLOS, and PACU-LOS and 2) to estimate the association between the best fitting hypotension definition identified in Aim 1 and the outcomes: 30-day mortality, hLOS and PACU-LOS.",FALSE,TRUE,"(203, 207, 'PACU', 'pacu')","Phylogenetics, Sequence analysis"
PMC11530086,"This was done using a univariable, a multivariable logistic regression model (for binary outcome 30-day mortality) and two linear regression models (for the metric outcomes hLOS and PACU-LOS).",FALSE,TRUE,"(182, 186, 'PACU', 'pacu')","Phylogenetics, Sequence analysis"
PMC11530086,The 1% trimmed hLOS and PACU-LOS were log-transformed for use as dependent variables in the models in order to stabilize the residual distribution; the results were back-transformed to the original scale for graphical presentation.,FALSE,TRUE,"(24, 28, 'PACU', 'pacu')","Phylogenetics, Sequence analysis"
PMC11530086,"By further excluding all patients not admitted to a PACU, we finally included 56,990 patients in the analysis of PACU LOS (Fig 1).",FALSE,TRUE,"(52, 56, 'PACU', 'pacu')","Phylogenetics, Sequence analysis"
PMC11530086,"Abbreviations: hLOS: hospital length of stay; PACU: postanesthesia care unit; PACU-LOS: postanesthesia care unit length of stay; n, number.",FALSE,TRUE,"(46, 50, 'PACU', 'pacu')","Phylogenetics, Sequence analysis"
PMC11530086,"The median hospital LOS was 5.1 (IQR: 3.1–10.3) days, and the median PACU-LOS was 2.1 (IQR: 1.6–2.9) h.",FALSE,TRUE,"(69, 73, 'PACU', 'pacu')","Phylogenetics, Sequence analysis"
PMC11530086,"LOS: length of stay, PACU: postoperative care unit, BMI: body mass index, ASA: American association of anesthesiologist score, min: minutes, d: days, COPD: chronic obstructive pulmonary disease, AIDS: Acquired Immunodeficiency Syndrome, n: number, ENT: ear-nose-throat, non-or: non operating room",FALSE,TRUE,"(21, 25, 'PACU', 'pacu')","Phylogenetics, Sequence analysis"
PMC11530086,"LOS: length of stay, PACU: postoperative care unit, BMI: body mass index, ASA: American association of anesthesiologist score, min: minutes, d: days, n: number, MAP: mean arterial pressure, IOH: intraoperative hypotension",FALSE,TRUE,"(21, 25, 'PACU', 'pacu')","Phylogenetics, Sequence analysis"
PMC11530086,"Most of the definitions were negatively associated with mortality, hLOS, and PACU-LOS in univariable models.",FALSE,TRUE,"(77, 81, 'PACU', 'pacu')","Phylogenetics, Sequence analysis"
PMC11530086,"For PACU-LOS, we found the strongest association with “lowest MAP for one cumulative minute”, closely followed by “lowest MAP for one minute”.",FALSE,TRUE,"(4, 8, 'PACU', 'pacu')","Phylogenetics, Sequence analysis"
PMC11530086,"LOS: Length of stay, PACU: Post anesthesia care unit, LOS: length of stay, PACU: postoperative care unit, MAP: mean arterial pressure, IOH: intraoperative hypotension, min: minutes",FALSE,TRUE,"(21, 25, 'PACU', 'pacu')","Phylogenetics, Sequence analysis"
PMC11530086,The PACU-LOS showed very similar behavior but for “lowest MAP for 1 cumulative minute” (Fig 5).,FALSE,TRUE,"(4, 8, 'PACU', 'pacu')","Phylogenetics, Sequence analysis"
PMC11530086,"MAP: mean arterial pressure, PACU: postanesthesia care unit.",FALSE,TRUE,"(29, 33, 'PACU', 'pacu')","Phylogenetics, Sequence analysis"
PMC11530086,"BMI: body mass index, MAP: mean arterial pressure, PACU: postanesthesia care unit.",FALSE,TRUE,"(51, 55, 'PACU', 'pacu')","Phylogenetics, Sequence analysis"
PMC11530086,"In addition to evaluating the association of IOH with mortality, hLOS, and PACU-LOS, we assessed the degree of influence of IOH and adjustment variables on these outcomes using the Brier score and MSE.",FALSE,TRUE,"(75, 79, 'PACU', 'pacu')","Phylogenetics, Sequence analysis"
PMC11530086,"While mortality and hLOS were mainly influenced by the ASA score (mortality) and duration of surgery (hLOS), respectively, PACU LOS was mostly influenced by duration of surgery and IOH.",FALSE,TRUE,"(123, 127, 'PACU', 'pacu')","Phylogenetics, Sequence analysis"
PMC11530086,Regarding hLOS and PACU-LOS differences could be shown.,FALSE,TRUE,"(19, 23, 'PACU', 'pacu')","Phylogenetics, Sequence analysis"
PMC11530086,"In contrast, the 0.95 confidence set for hLOS contains only three IOH definitions (Lowest MAP for 1 minute, Lowest MAP for 1 cumulative minute, and Lowest MAP for 3 cumulative minutes) and that for PACU-LOS contains only the selected Lowest MAP for 1 cumulative minute.",FALSE,TRUE,"(198, 202, 'PACU', 'pacu')","Phylogenetics, Sequence analysis"
PMC11530086,Data on the association of IOH and PACU-LOS were missing entirely to the authors’ best knowledge.,FALSE,TRUE,"(35, 39, 'PACU', 'pacu')","Phylogenetics, Sequence analysis"
PMC11530086,"Regarding our LOS analyses, we found Lowest MAP for one minute to be the best fitting IOH definition for hLOS and “Lowest MAP for one cumulative minute” to be the best fitting IOH definition for PACU-LOS.",FALSE,TRUE,"(195, 199, 'PACU', 'pacu')","Phylogenetics, Sequence analysis"
PMC11530086,"While IOH had less influence than length of surgery and duration from hospital admission to surgery on hLOS, it had as much influence as length of surgery on PACU-LOS.",FALSE,TRUE,"(158, 162, 'PACU', 'pacu')","Phylogenetics, Sequence analysis"
PMC11530086,Multivariable regression analyses revealed a sigmoid relationship between IOH and both hLOS and PACU-LOS (Figs 4 and 5).,FALSE,TRUE,"(96, 100, 'PACU', 'pacu')","Phylogenetics, Sequence analysis"
PMC11530086,"In this study, we found a three-phase association of IOH with postoperative outcomes as follows: 1) below a MAP of approximately 60 mmHg, hLOS and PACU-LOS decreased with increasing MAP, followed by 2) a plateau between 60 and 75 mmHg, and 3) above a MAP of 75 mmHg, hLOS and PACU-LOS further decreased with increasing MAP.",FALSE,TRUE,"(147, 151, 'PACU', 'pacu')","Phylogenetics, Sequence analysis"
PMC11530086,"In this retrospective trial, “Cumulative time with a MAP <80 mmHg” was the best fitting definition of intraoperative hypotension for associations with mortality, while “Lowest MAP for one minute” performed best for hospital length of stay, and “Lowest MAP for one cumulative minute” for PACU-length of stay.",FALSE,TRUE,"(287, 291, 'PACU', 'pacu')","Phylogenetics, Sequence analysis"
PMC10924745,"We applied our findings to the BDEI model and implemented its parameter estimator PyBDEI, employing targeted numerical analysis methods for accurate and fast resolution of its equations.",FALSE,FALSE,"(82, 88, 'PyBDEI', 'pybdei')",Phylogenetics
PMC10924745,"We show the accuracy and speed of PyBDEI on simulated data and compare it to the gold standard Bayesian tool BEAST2 (Bouckaert et al., 2019) and the deep-learning-based tool PhyloDeep (Voznica et al., 2022).",FALSE,FALSE,"(34, 40, 'PyBDEI', 'pybdei')",Phylogenetics
PMC10924745,"Lastly, we apply PyBDEI to infer the epidemiological parameters that shaped the Ebola epidemic in Sierra-Leone in 2014.",FALSE,FALSE,"(17, 23, 'PyBDEI', 'pybdei')",Phylogenetics
PMC10924745,We applied our theoretical findings to implement a fast and efficient parameter estimator for the BDEI model (which we called PyBDEI).,FALSE,FALSE,"(126, 132, 'PyBDEI', 'pybdei')",Phylogenetics
PMC10924745,"To assess the performance of our maximum-likelihood estimator PyBDEI, we used the simulated data from Voznica et al.",FALSE,FALSE,"(62, 68, 'PyBDEI', 'pybdei')",Phylogenetics
PMC10924745,"To evaluate PyBDEI performance on forests, we additionally generated two types of forests for the large data set.",FALSE,FALSE,"(12, 18, 'PyBDEI', 'pybdei')",Phylogenetics
PMC10924745,"We applied PyBDEI to these data sets, and compared the results to those reported for BEAST2 and PhyloDeep in Voznica et al.",FALSE,FALSE,"(11, 17, 'PyBDEI', 'pybdei')",Phylogenetics
PMC10924745,"For the large data set, we applied PyBDEI to full trees, but also to the two types of forests.",FALSE,FALSE,"(35, 41, 'PyBDEI', 'pybdei')",Phylogenetics
PMC10924745,"Average relative errors for PyBDEI were ≤13% on the medium trees and ≤2% on the large trees (hence decreasing with the data set size, as expected), and well centered around zero (i.e., unbiased), as shown in Fig.",FALSE,FALSE,"(28, 34, 'PyBDEI', 'pybdei')",Phylogenetics
PMC10924745,"For the medium data set BEAST2 (in orange), PhyloDeep (in green) and our estimator (PyBDEI, in blue) are compared.",FALSE,FALSE,"(84, 90, 'PyBDEI', 'pybdei')",Phylogenetics
PMC10924745,"We show the swarmplots (colored by method) of relative errors for each test tree/forest and parameter, which are measured as the normalized distance between the median a posteriori estimate by BEAST2 or a point estimate by PhyloDeep/PyBDEI and the real value.",FALSE,FALSE,"(233, 239, 'PyBDEI', 'pybdei')",Phylogenetics
PMC10924745,"For the infectious time, 1/ψ, PyBDEI was at least as accurate as PhyloDeep and more accurate than BEAST2 (P-value <0.05).",FALSE,FALSE,"(30, 36, 'PyBDEI', 'pybdei')",Phylogenetics
PMC10924745,"For the incubation period, 1/μ, PyBDEI was more accurate than both other methods (see Fig.",FALSE,FALSE,"(32, 38, 'PyBDEI', 'pybdei')",Phylogenetics
PMC10924745,"On the large data set BEAST2 was inapplicable due to computation times (57 CPU hours were already required for each medium-sized tree, on average), while PyBDEI was more accurate than PhyloDeep, both using full trees and the forests of the first type (i.e., where all the trees started at the same time, P-value <0.01 for all the parameters, see Fig.",FALSE,FALSE,"(154, 160, 'PyBDEI', 'pybdei')",Phylogenetics
PMC10924745,"On the forests of the second type (i.e., trees starting at different times) PyBDEI’s performance was comparable to the one of PhyloDeep for all the parameters.",FALSE,FALSE,"(76, 82, 'PyBDEI', 'pybdei')",Phylogenetics
PMC10924745,"While the mean relative errors were low (<10%), PyBDEI performed worse (P-value <0.01) on forests of type 2 than on full trees or forests of type 1 for the infectious period and incubation time.",FALSE,FALSE,"(48, 54, 'PyBDEI', 'pybdei')",Phylogenetics
PMC10924745,"PyBDEI performed well on these two trees: real parameters were within estimated confidence intervals, relative errors for Re<15%, relative errors for incubation period and infectious time <10%.",FALSE,FALSE,"(0, 6, 'PyBDEI', 'pybdei')",Phylogenetics
PMC10924745,"PyBDEI estimates had a higher or equal likelihood than any other method and real values for all the trees of both data sets, suggesting that PyBDEI reaches the global optimum of the likelihood function.",FALSE,FALSE,"(0, 6, 'PyBDEI', 'pybdei')",Phylogenetics
PMC10924745,"On the medium dataset, PyBDEI estimates had an equal likelihood to the ones of BEAST2 for 85% of trees, and a higher likelihood for the other 15% of trees.",FALSE,FALSE,"(23, 29, 'PyBDEI', 'pybdei')",Phylogenetics
PMC10924745,"Comparing to PhyloDeep, PyBDEI estimates had an equal likelihood for 48% of trees, and a higher likelihood for the other 52% of trees.",FALSE,FALSE,"(24, 30, 'PyBDEI', 'pybdei')",Phylogenetics
PMC10924745,"For example, 0.847 in the row “BEAST2 =” and the column “PyBDEI medium” means that the estimates of BEAST2 had an equal likelihood to those of PyBDEI on 84.7% of trees of the medium data set.",FALSE,FALSE,"(57, 63, 'PyBDEI', 'pybdei')",Phylogenetics
PMC10924745,"In terms of time, on the medium data set PyBDEI needed on average 4 seconds per tree on 1 CPU, and converged in 864 iterations (including CI calculation).",FALSE,FALSE,"(41, 47, 'PyBDEI', 'pybdei')",Phylogenetics
PMC10924745,"These times cannot be directly compared to BEAST2 times, as BEAST2 performs a Markov Chain Monte Carlo (MCMC) parameter space exploration instead of looking for the optimum (as PyBDEI does), hence requires many more steps: for 106 MCMC steps it took on average 57 CPU hours.",FALSE,FALSE,"(177, 183, 'PyBDEI', 'pybdei')",Phylogenetics
PMC10924745,"The average time of PyBDEI convergence on the large data set was 2 min 28 s on 1 CPU, and required 960 iterations.",FALSE,FALSE,"(20, 26, 'PyBDEI', 'pybdei')",Phylogenetics
PMC10924745,"However, to assess PyBDEI performance with other parameters fixed, we estimated parameters for trees in the large data set under three additional settings: with (1) μ, (2) λ, or (3) ψ fixed to its real value.",FALSE,FALSE,"(19, 25, 'PyBDEI', 'pybdei')",Phylogenetics
PMC10924745,"Using PyBDEI, we analysed the 2014 Ebola epidemic in Sierra-Leone (SLE).",FALSE,FALSE,"(6, 12, 'PyBDEI', 'pybdei')",Phylogenetics
PMC10924745,"This application shows the advantages of PyBDEI not only in terms of calculation times, but also in terms of flexibility of input settings (extracting information from multiple trees).",FALSE,FALSE,"(41, 47, 'PyBDEI', 'pybdei')",Phylogenetics
PMC10924745,"Our parameter estimator, PyBDEI, drastically increases parameter optimization performance, accuracy and speed with respect to previously available estimators.",FALSE,FALSE,"(25, 31, 'PyBDEI', 'pybdei')",Phylogenetics
PMC10924745,"PyBDEI is applicable to very large data sets (2 min on a 10000-tip tree), making parameter and CI estimation instantaneous with respect to phylogenetic tree reconstruction times (hours or even days).",FALSE,FALSE,"(0, 6, 'PyBDEI', 'pybdei')",Phylogenetics
PMC10924745,"With rapidly growing genome sequence data, castor and PyBDEI open way to fast and accurate parameter estimations for ecology and epidemiology.",FALSE,FALSE,"(54, 60, 'PyBDEI', 'pybdei')",Phylogenetics
PMC10924745,"To facilitate the use of our estimator in Python and perform additional validation of input trees, we wrapped the core estimator into a Python 3 library PyBDEI.",FALSE,FALSE,"(153, 159, 'PyBDEI', 'pybdei')",Phylogenetics
PMC10924745,"PyBDEI uses ETE 3 framework for tree manipulation (Huerta-Cepas et al., 2016) and NumPy package for array operations (Harris et al., 2020).",FALSE,FALSE,"(0, 6, 'PyBDEI', 'pybdei')",Phylogenetics
PMC10885866,"Because of fewer false positives and the greatest AUC, AntiBP3 is able to attain a balanced sensitivity and specificity.",FALSE,FALSE,"(55, 62, 'AntiBP3', 'antibp3')",
PMC10885866,"We integrated our best-performing models in AntiBP3, a user-friendly online server (https://webs.iiitd.edu.in/raghava/antibp3/ (accessed on 20 November 2023)) that predicts antibacterial peptides for different groups of bacteria based on sequence information for each entry.",FALSE,FALSE,"(44, 51, 'AntiBP3', 'antibp3')",
PMC10885866,The datasets constructed for this study can be retrieved from the ‘AntiBP3′ web server at https://webs.iiitd.edu.in/raghava/antibp3/downloads.php (accessed on 20 November 2023).,FALSE,FALSE,"(67, 74, 'AntiBP3', 'antibp3')",
PMC10885866,The source code for this study is freely accessible on GitHub and can be found at https://github.com/raghavagps/AntiBP3 (accessed on 20 November 2023).,FALSE,FALSE,"(112, 119, 'AntiBP3', 'antibp3')",
PMC10885866,"A flow diagram showing the process of creating AntiBP3 datasets for gram-positive, gram-negative, and gram-variable bacteria.",FALSE,FALSE,"(47, 54, 'AntiBP3', 'antibp3')",
PMC10885866,"The comparison of existing prediction tools with AntiBP3 on the validation dataset to discriminate the three groups of ABPs, i.e., gram-positive, negative and variable.",FALSE,FALSE,"(49, 56, 'AntiBP3', 'antibp3')",
PMC10877048,Our method—MRSLpred—outperforms the existing state-of-the-art classifier in terms of performance and computation efficiency.,FALSE,FALSE,"(11, 19, 'MRSLpred', 'mrslpred')",
PMC10877048,"This method, named MRSLpred, is based on machine learning and uses the composition features of mRNA sequences for prediction.",FALSE,FALSE,"(19, 27, 'MRSLpred', 'mrslpred')",
PMC10877048,"Importantly, MRSLpred can be implemented at a genome scale as its computational resource requirements are minimal.",FALSE,FALSE,"(13, 21, 'MRSLpred', 'mrslpred')",
PMC10877048,Outline of the methodology followed by MRSLpred.,FALSE,FALSE,"(39, 47, 'MRSLpred', 'mrslpred')",
PMC10877048,"The performance of both DM3Loc and MRSLpred was evaluated on the validation dataset, and it was observed that DM3Loc performs better than MRSLpred in terms of AUROC and MCC.",FALSE,FALSE,"(35, 43, 'MRSLpred', 'mrslpred')",
PMC10877048,Both MRSLpred and DM3Loc have been designed as multi-label classifiers where more than one location can be assigned to a single sequence.,FALSE,FALSE,"(5, 13, 'MRSLpred', 'mrslpred')",
PMC10877048,"On the other hand, other existing methods perform multiclass classification, assigning only one location to a single sequence, and comparing MRSLpred/DM3Loc with these tools would be unfair to them.",FALSE,FALSE,"(141, 149, 'MRSLpred', 'mrslpred')",
PMC10877048,"However, for the sake of comparison, we evaluated the performance of all these tools on the validation dataset used in MRSLpred.",FALSE,FALSE,"(119, 127, 'MRSLpred', 'mrslpred')",
PMC10877048,The detailed comparison of MRSLpred with DM3Loc and all other tools which do not support multi-label classification is provided in Table 5.,FALSE,FALSE,"(27, 35, 'MRSLpred', 'mrslpred')",
PMC10877048,Benchmarking of MRSLpred with existing prediction tools on the validation dataset used in MRSLpred.,FALSE,FALSE,"(16, 24, 'MRSLpred', 'mrslpred')",
PMC10877048,Another significant advantage of MRSLpred is that it is computationally very efficient and consumes very less time.,FALSE,FALSE,"(33, 41, 'MRSLpred', 'mrslpred')",
PMC10877048,The detailed comparison of MRSLpred and DM3Loc based on the time taken to generate predictions is provided in Table 6.,FALSE,FALSE,"(27, 35, 'MRSLpred', 'mrslpred')",
PMC10877048,Comparison of MRSLpred with DM3Loc based on the time taken for similar datasets.,FALSE,FALSE,"(14, 22, 'MRSLpred', 'mrslpred')",
PMC10877048,MRSLpred achieves an AUROC between 0.708 and 0.816 (average: 0.742) and an MCC between 0.073 and 0.319 (average: 0.232) on the validation dataset.,FALSE,FALSE,"(0, 8, 'MRSLpred', 'mrslpred')",
PMC10877048,"MRSLpred uses a much simpler approach, combining an XGBoost model with a motif-based module and using compositional features for the model.",FALSE,FALSE,"(0, 8, 'MRSLpred', 'mrslpred')",
PMC10877048,"The time taken by MRSLpred for predicting the location of 500 mRNA sequences is less than 1 min, whereas for the same dataset, DM3Loc takes approximately 32 min.",FALSE,FALSE,"(18, 26, 'MRSLpred', 'mrslpred')",
PMC10877048,"MRSLpred is available online at https://webs.iiitd.edu.in/raghava/mrslpred/, and its standalone can be downloaded from https://webs.iiitd.edu.in/raghava/mrslpred/standalone.php.",FALSE,FALSE,"(0, 8, 'MRSLpred', 'mrslpred')",
PMC11177086,"The authors have developed an in-silico tool, named PhageTB, for the prediction of phage-bacteria interactions with high accuracy.",FALSE,FALSE,"(52, 59, 'PhageTB', 'cellppd-mod')",
PMC11177086,We believe that PhageTB will be an effective method for prediction of phage-based therapy against bacterial infections.,FALSE,FALSE,"(16, 23, 'PhageTB', 'cellppd-mod')",
PMC11253343,"We introduce the open-source PyChelator web application and the Python-based Google Colaboratory notebook, PyChelator Colab.",FALSE,FALSE,"(29, 39, 'PyChelator', 'pychelator')",Biochemistry
PMC11253343,No notable differences were observed compared to the results obtained from the PyChelator web application.,FALSE,FALSE,"(79, 89, 'PyChelator', 'pychelator')",Biochemistry
PMC11253343,PyChelator is a user-friendly metal and chelator calculator that provides a platform for further development.,FALSE,FALSE,"(0, 10, 'PyChelator', 'pychelator')",Biochemistry
PMC11253343,"It is provided as an interactive web application, freely available for use at https://amrutelab.github.io/PyChelator, and as a Python-based Google Colaboratory notebook at https://colab.research.google.com/github/AmruteLab/PyChelator/blob/main/PyChelator_Colab.ipynb.",FALSE,FALSE,"(106, 116, 'PyChelator', 'pychelator')",Biochemistry
PMC11253343,"To address these needs and concerns, we developed PyChelator web application (https://amrutelab.github.io/PyChelator/), an open source program, based on the well-established and widely used Maxchelator framework.",FALSE,FALSE,"(50, 60, 'PyChelator', 'pychelator')",Biochemistry
PMC11253343,PyChelator offers enhanced user experience and customization options.,FALSE,FALSE,"(0, 10, 'PyChelator', 'pychelator')",Biochemistry
PMC11253343,The Python code in a Google Colaboratory notebook makes the PyChelator functionalities readily available to the Python-using scientific community for further development.,FALSE,FALSE,"(60, 70, 'PyChelator', 'pychelator')",Biochemistry
PMC11253343,PyChelator web application uses JavaScript for calculations and utilizes HTML & CSS for the frontend interface.,FALSE,FALSE,"(0, 10, 'PyChelator', 'pychelator')",Biochemistry
PMC11253343,The graphical user interface (GUI) of the PyChelator web application is designed for simplicity of use and comprises three panels.,FALSE,FALSE,"(42, 52, 'PyChelator', 'pychelator')",Biochemistry
PMC11253343,"An easy-to-follow tutorial of an example calculation and manual entry of constants are included inside PyChelator, and shown in Fig.",FALSE,FALSE,"(103, 113, 'PyChelator', 'pychelator')",Biochemistry
PMC11253343,1Example uses of PyChelator.,FALSE,FALSE,"(17, 27, 'PyChelator', 'pychelator')",Biochemistry
PMC11253343,Example uses of PyChelator.,FALSE,FALSE,"(16, 26, 'PyChelator', 'pychelator')",Biochemistry
PMC11253343,"PyChelator facilitates the entry of smaller concentrations of chelators and metals through a dropdown menu, enabling entry of values from molar (M) to nanomolar range (M, mM, μM, and nM).",FALSE,FALSE,"(0, 10, 'PyChelator', 'pychelator')",Biochemistry
PMC11253343,A function to calculate the ionic equivalence inside PyChelator is also included.,FALSE,FALSE,"(53, 63, 'PyChelator', 'pychelator')",Biochemistry
PMC11253343,"Additionally, PyChelator includes an option for the log-transformed values of the free metal concentrations (− log10[free]), corresponding to the pX values (for example pCa for free calcium).",FALSE,FALSE,"(14, 24, 'PyChelator', 'pychelator')",Biochemistry
PMC11253343,"A screenshot of the PyChelator GUI, accompanied by annotations, is presented in Fig.",FALSE,FALSE,"(20, 30, 'PyChelator', 'pychelator')",Biochemistry
PMC11253343,"2Screenshot of PyChelator graphical user interface (GUI), illustrating the intuitive layout and functionality.",FALSE,FALSE,"(15, 25, 'PyChelator', 'pychelator')",Biochemistry
PMC11253343,"Screenshot of PyChelator graphical user interface (GUI), illustrating the intuitive layout and functionality.",FALSE,FALSE,"(14, 24, 'PyChelator', 'pychelator')",Biochemistry
PMC11253343,PyChelator is a single page application where users can switch constants by the use of a dropdown menu.,FALSE,FALSE,"(0, 10, 'PyChelator', 'pychelator')",Biochemistry
PMC11253343,3Comparison of PyChelator results obtained from different stability constants.,FALSE,FALSE,"(15, 25, 'PyChelator', 'pychelator')",Biochemistry
PMC11253343,"A PyChelator offers the selection of stability constants from four sources, and allows the input of user-defined constants.",FALSE,FALSE,"(2, 12, 'PyChelator', 'pychelator')",Biochemistry
PMC11253343,"B Calculations done in PyChelator using the four sets of stability constants, sourced from the National Institute of Standards and Technology ‘NIST’ [11], ‘SPECS’ by Fabiato [2], ‘Chelator’ by Schoenmakers et al.",FALSE,FALSE,"(23, 33, 'PyChelator', 'pychelator')",Biochemistry
PMC11253343,"Notably, the high-precision calculations performed in PyChelator Colab employing the NIST constants and arbitrary precision of 50 decimals in calculations (PyNIST), were similar to those obtained from PyChelator web application using the same constants (NIST)",FALSE,FALSE,"(54, 64, 'PyChelator', 'pychelator')",Biochemistry
PMC11253343,Comparison of PyChelator results obtained from different stability constants.,FALSE,FALSE,"(14, 24, 'PyChelator', 'pychelator')",Biochemistry
PMC11253343,PyChelator further enhances user customization by allowing manual input of user-defined stability constants.,FALSE,FALSE,"(0, 10, 'PyChelator', 'pychelator')",Biochemistry
PMC11253343,This feature makes it possible to use PyChelator as “Any Metal Any Chelator Calculator”.,FALSE,FALSE,"(38, 48, 'PyChelator', 'pychelator')",Biochemistry
PMC11253343,Some commonly used metal-chelator pairs are included together with references under the “Stability Constants” folder in PyChelator Github repository.,FALSE,FALSE,"(120, 130, 'PyChelator', 'pychelator')",Biochemistry
PMC11253343,PyChelator Colab offers a cloud-based interactive Python environment that lets users write and execute code in their browsers.,FALSE,FALSE,"(0, 10, 'PyChelator', 'pychelator')",Biochemistry
PMC11253343,"Unlike Flask and Django, which are designed to handle server-side operations and require managing server hosting and domain registration (which can be costly), PyChelator Colab and PyChelator web applications do not require server hosting.",FALSE,FALSE,"(160, 170, 'PyChelator', 'pychelator')",Biochemistry
PMC11253343,"PyChelator Colab is also modified to use the built-in Python Decimal module, introducing user-defined precision in the calculations, which are otherwise limited by double precision in the floating-point arithmetic of Python and JavaScript.",FALSE,FALSE,"(0, 10, 'PyChelator', 'pychelator')",Biochemistry
PMC11253343,"Nevertheless, the results obtained from the PyChelator web application, which utilizes JavaScript in calculations, compared to PyChelator Colab, did not show a notable difference (Fig.",FALSE,FALSE,"(44, 54, 'PyChelator', 'pychelator')",Biochemistry
PMC11253343,A general comparison of the features offered by PyChelator compared to other calculator software is given in Table 1.Fig.,FALSE,FALSE,"(48, 58, 'PyChelator', 'pychelator')",Biochemistry
PMC11253343,4PyChelator Colab GUI.,FALSE,FALSE,"(1, 11, 'PyChelator', 'pychelator')",Biochemistry
PMC11253343,"A To run a calculation in PyChelator Colab, the user has to run the first code cell ""Constants"" which enables the dropdown for selection/entry of constants, followed by saving the options through clicking ""Save Values"".",FALSE,FALSE,"(26, 36, 'PyChelator', 'pychelator')",Biochemistry
PMC11253343,"A field for decimal precision is included to specify the level of precision in decimal places, employing arbitrary precision provided by the Decimals module of PythonTable 1Comparison of PyChelator to other softwareProgramming languageConstantsInputOutputRefsPyChelator (2024)JavaScript, PythonNIST, Schoenmakers, Fabiato, Chelator, User-defined entryM, mM, μM, nMChoose parameters, Append, ExcelThis workMaxChelator (2010)JavaScriptNIST, Schoenmakers, Editable constants fileMOne at a time[6]Calcium (1993)N/AMartell and Smith, Editable constantsmMOne at a time[5]Chelator (1992)Turbo PascalSchoenmakers, Editable constants fileMOne at a time[3]SPECS (1988)FortranFabiato and Fabiato, Editable using WordStarMOne at a time[2]",FALSE,FALSE,"(187, 197, 'PyChelator', 'pychelator')",Biochemistry
PMC11253343,PyChelator Colab GUI.,FALSE,FALSE,"(0, 10, 'PyChelator', 'pychelator')",Biochemistry
PMC11253343,Comparison of PyChelator to other software,FALSE,FALSE,"(14, 24, 'PyChelator', 'pychelator')",Biochemistry
PMC11253343,"PyChelator validates the input values for temperature (0–40 °C), ionic equivalence (0–500 mM), and pH (0–14).",FALSE,FALSE,"(0, 10, 'PyChelator', 'pychelator')",Biochemistry
PMC11253343,PyChelator was prepared to facilitate improvements in these calculations.,FALSE,FALSE,"(0, 10, 'PyChelator', 'pychelator')",Biochemistry
PMC11253343,"The PyChelator delivers a significant improvement over currently available web applications by offering a user-friendly metal chelator calculator that allows, among others, selection out of four sets of stability constants, input in smaller units, the option to specify user-defined constants, and the convenient ability to download results as a single Excel file.",FALSE,FALSE,"(4, 14, 'PyChelator', 'pychelator')",Biochemistry
PMC11253343,The Python-based PyChelator Colab offers easy customization in the modern programming language with user-defined precision in decimal calculations.,FALSE,FALSE,"(17, 27, 'PyChelator', 'pychelator')",Biochemistry
PMC11253343,Project name: PyChelator.,FALSE,FALSE,"(14, 24, 'PyChelator', 'pychelator')",Biochemistry
PMC11253343,Project home page: https://amrutelab.github.io/PyChelator/.,FALSE,FALSE,"(47, 57, 'PyChelator', 'pychelator')",Biochemistry
PMC11253343,Source code: https://github.com/AmruteLab/PyChelator.,FALSE,FALSE,"(42, 52, 'PyChelator', 'pychelator')",Biochemistry
PMC11223802,The RNAscape webserver produces visualizations that can preserve topological correspondence while remaining both visually intuitive and structurally insightful.,FALSE,FALSE,"(4, 12, 'RNAscape', 'rnascape')","RNA, Nucleic acid structure analysis, Mathematics, Imaging"
PMC11223802,"RNAscape achieves this by designing a mathematical structural mapping algorithm which prioritizes the helical segments, reflecting their tertiary organization.",FALSE,FALSE,"(0, 8, 'RNAscape', 'rnascape')","RNA, Nucleic acid structure analysis, Mathematics, Imaging"
PMC11223802,RNAscape runs a plotting script that is designed to generate publication-quality images.,FALSE,FALSE,"(0, 8, 'RNAscape', 'rnascape')","RNA, Nucleic acid structure analysis, Mathematics, Imaging"
PMC11223802,"RNAscape natively supports non-standard nucleotides, multiple base-pairing annotation styles and requires no programming experience.",FALSE,FALSE,"(0, 8, 'RNAscape', 'rnascape')","RNA, Nucleic acid structure analysis, Mathematics, Imaging"
PMC11223802,"RNAscape can also be used to analyze RNA/DNA hybrid structures and DNA topologies, including G-quadruplexes.",FALSE,FALSE,"(0, 8, 'RNAscape', 'rnascape')","RNA, Nucleic acid structure analysis, Mathematics, Imaging"
PMC11223802,The RNAscape webserver allows users to customize visualizations through various settings as desired.,FALSE,FALSE,"(4, 12, 'RNAscape', 'rnascape')","RNA, Nucleic acid structure analysis, Mathematics, Imaging"
PMC11223802,RNAscape addresses and overcomes the outlined issues and limitations of existing approaches at several levels.,FALSE,FALSE,"(0, 8, 'RNAscape', 'rnascape')","RNA, Nucleic acid structure analysis, Mathematics, Imaging"
PMC11223802,The RNAscape algorithm includes a mapping process that conforms to the helical geometry of RNA structures.,FALSE,FALSE,"(4, 12, 'RNAscape', 'rnascape')","RNA, Nucleic acid structure analysis, Mathematics, Imaging"
PMC11223802,"At the same time, RNAscape optimizes each layout to place non-helical segments of the structure without sacrificing tertiary interactions.",FALSE,FALSE,"(18, 26, 'RNAscape', 'rnascape')","RNA, Nucleic acid structure analysis, Mathematics, Imaging"
PMC11223802,RNAscape output for various structures from the PDB.,FALSE,FALSE,"(0, 8, 'RNAscape', 'rnascape')","RNA, Nucleic acid structure analysis, Mathematics, Imaging"
PMC11223802,"The 3D structure at the top of each panel is from the PDB structure, with its corresponding RNAscape visualization shown below it.",FALSE,FALSE,"(92, 100, 'RNAscape', 'rnascape')","RNA, Nucleic acid structure analysis, Mathematics, Imaging"
PMC11223802,The RNAscape webserver (Figure 2) offers various customization options for its visualizations.,FALSE,FALSE,"(4, 12, 'RNAscape', 'rnascape')","RNA, Nucleic acid structure analysis, Mathematics, Imaging"
PMC11223802,RNAscape encourages users to iteratively refine an image.,FALSE,FALSE,"(0, 8, 'RNAscape', 'rnascape')","RNA, Nucleic acid structure analysis, Mathematics, Imaging"
PMC11223802,"In addition, RNAscape allows the user to modify the calculated map.",FALSE,FALSE,"(13, 21, 'RNAscape', 'rnascape')","RNA, Nucleic acid structure analysis, Mathematics, Imaging"
PMC11223802,"Upon completion, RNAscape visualizations can be exported to vector format (SVG) or image format (PNG), enabling further refinements by the user.",FALSE,FALSE,"(17, 25, 'RNAscape', 'rnascape')","RNA, Nucleic acid structure analysis, Mathematics, Imaging"
PMC11223802,"Additionally, RNAscape can directly fetch structures (biological assembly 1) from the PDB (21) based on a given PDB ID.",FALSE,FALSE,"(14, 22, 'RNAscape', 'rnascape')","RNA, Nucleic acid structure analysis, Mathematics, Imaging"
PMC11223802,RNAscape overview.,FALSE,FALSE,"(0, 8, 'RNAscape', 'rnascape')","RNA, Nucleic acid structure analysis, Mathematics, Imaging"
PMC11223802,(A) RNAscape algorithm for geometric mapping.,FALSE,FALSE,"(4, 12, 'RNAscape', 'rnascape')","RNA, Nucleic acid structure analysis, Mathematics, Imaging"
PMC11223802,RNAscape builds a 2D ladder representation for helical segments that closely adheres to their principal component analysis (PCA) projection.,FALSE,FALSE,"(0, 8, 'RNAscape', 'rnascape')","RNA, Nucleic acid structure analysis, Mathematics, Imaging"
PMC11223802,"(B) RNAscape webserver for plotting flexible, publication-quality visualizations.",FALSE,FALSE,"(4, 12, 'RNAscape', 'rnascape')","RNA, Nucleic acid structure analysis, Mathematics, Imaging"
PMC11223802,(C) RNAscape frontend for user interaction and customization.,FALSE,FALSE,"(4, 12, 'RNAscape', 'rnascape')","RNA, Nucleic acid structure analysis, Mathematics, Imaging"
PMC11223802,"RNAscape allows users to upload a file or input a PDB ID for processing and to adjust various settings including base-pairing annotations, residue colors, nucleotide or text-label sizes and numbering schema.",FALSE,FALSE,"(0, 8, 'RNAscape', 'rnascape')","RNA, Nucleic acid structure analysis, Mathematics, Imaging"
PMC11223802,RNAscape also provides an associated documentation.,FALSE,FALSE,"(0, 8, 'RNAscape', 'rnascape')","RNA, Nucleic acid structure analysis, Mathematics, Imaging"
PMC11223802,"After processing, RNAscape supports interaction with output layouts including zooming, rotating, panning, and modifying the map.",FALSE,FALSE,"(18, 26, 'RNAscape', 'rnascape')","RNA, Nucleic acid structure analysis, Mathematics, Imaging"
PMC11223802,"RNAscape supports multiple base-pairing annotation conventions: Leontis-Westhof (LW) (16), Saenger (19), DSSR (Dissecting the Spatial Structure of RNA) (20) and a no-annotation option.",FALSE,FALSE,"(0, 8, 'RNAscape', 'rnascape')","RNA, Nucleic acid structure analysis, Mathematics, Imaging"
PMC11223802,The RNAscape webserver is a single-page web application.,FALSE,FALSE,"(4, 12, 'RNAscape', 'rnascape')","RNA, Nucleic acid structure analysis, Mathematics, Imaging"
PMC11223802,"Upon upload, the structure file is sent via Hypertext Transfer Protocol Secure (HTTPS) to the RNAscape webserver where backend processing occurs.",FALSE,FALSE,"(94, 102, 'RNAscape', 'rnascape')","RNA, Nucleic acid structure analysis, Mathematics, Imaging"
PMC11223802,RNAscape algorithm.,FALSE,FALSE,"(0, 8, 'RNAscape', 'rnascape')","RNA, Nucleic acid structure analysis, Mathematics, Imaging"
PMC11223802,"For each helical segment, RNAscape estimates the ladder axis by connecting the centroids of the starting and ending nucleotides with a line segment.",FALSE,FALSE,"(26, 34, 'RNAscape', 'rnascape')","RNA, Nucleic acid structure analysis, Mathematics, Imaging"
PMC11223802,The RNAscape backend utilizes the Matplotlib (24) and NetworkX (25) packages to plot visualizations.,FALSE,FALSE,"(4, 12, 'RNAscape', 'rnascape')","RNA, Nucleic acid structure analysis, Mathematics, Imaging"
PMC11223802,We present RNAscape output for various structures (Figures 1 and 4) from the PDB (21).,FALSE,FALSE,"(11, 19, 'RNAscape', 'rnascape')","RNA, Nucleic acid structure analysis, Mathematics, Imaging"
PMC11223802,RNAscape output preserves the L-shaped topology (as opposed to known ‘clover leaf’ shaped secondary structure (26) visualizations) and annotates non-standard bases and base-pairing geometries (critical in many RNA interactions (27)).,FALSE,FALSE,"(0, 8, 'RNAscape', 'rnascape')","RNA, Nucleic acid structure analysis, Mathematics, Imaging"
PMC11223802,"RNAscape can also process unusual DNA structures, as shown by a single-stranded DNA with circular topology (PDB ID: 4NOE, Figure 1B).",FALSE,FALSE,"(0, 8, 'RNAscape', 'rnascape')","RNA, Nucleic acid structure analysis, Mathematics, Imaging"
PMC11223802,RNAscape output for large-size structures from the PDB.,FALSE,FALSE,"(0, 8, 'RNAscape', 'rnascape')","RNA, Nucleic acid structure analysis, Mathematics, Imaging"
PMC11223802,"RNA loop modeling (28) for riboswitches is an important area of research, and RNAscape visualizations (e.g.",FALSE,FALSE,"(78, 86, 'RNAscape', 'rnascape')","RNA, Nucleic acid structure analysis, Mathematics, Imaging"
PMC11223802,"The pistol ribozyme (PDB ID: 6R47, Figure 1D) and the Nicotinamide Adenine Dinucleotide-II (NAD-II) riboswitch (PDB ID: 8HBA, Figure 1G) illustrate how RNAscape places non-helical segments and can clearly depict their non-standard base pairs with helical segments.",FALSE,FALSE,"(152, 160, 'RNAscape', 'rnascape')","RNA, Nucleic acid structure analysis, Mathematics, Imaging"
PMC11223802,RNAscape natively supports multiple strands (e.g.,FALSE,FALSE,"(0, 8, 'RNAscape', 'rnascape')","RNA, Nucleic acid structure analysis, Mathematics, Imaging"
PMC11223802,"RNAscape is also able to visualize G-quadruplexes (PDB ID: 2M18, Figure 1E).",FALSE,FALSE,"(0, 8, 'RNAscape', 'rnascape')","RNA, Nucleic acid structure analysis, Mathematics, Imaging"
PMC11223802,"The RNAscape visualization (Figure 1J, Supplementary Figure S1) for the same reflects the high degree of conformational symmetry, based on structural coordinates of the PTC provided by Bose et al.",FALSE,FALSE,"(4, 12, 'RNAscape', 'rnascape')","RNA, Nucleic acid structure analysis, Mathematics, Imaging"
PMC11223802,RNAscape can run on relatively large structures (structures of up to 50 MB are processed by the webserver).,FALSE,FALSE,"(0, 8, 'RNAscape', 'rnascape')","RNA, Nucleic acid structure analysis, Mathematics, Imaging"
PMC11223802,"stacked ladders, PDB ID: 7QDU, Figure 4D, 552 nucleotides), while RNAscape is able to reflect the 3D topology of these large RNA molecules.",FALSE,FALSE,"(66, 74, 'RNAscape', 'rnascape')","RNA, Nucleic acid structure analysis, Mathematics, Imaging"
PMC11223802,"The RNAscape webserver (Figure 2C) displays three primary items: header, file upload, and documentation panels.",FALSE,FALSE,"(4, 12, 'RNAscape', 'rnascape')","RNA, Nucleic acid structure analysis, Mathematics, Imaging"
PMC11223802,Clicking the ‘Run’ button runs the RNAscape pipeline on the uploaded structure file or provided PDB ID (biological assembly 1).,FALSE,FALSE,"(35, 43, 'RNAscape', 'rnascape')","RNA, Nucleic acid structure analysis, Mathematics, Imaging"
PMC11223802,"After running RNAscape for a structure, a user has the option to add a second structure for side-by-side viewing.",FALSE,FALSE,"(14, 22, 'RNAscape', 'rnascape')","RNA, Nucleic acid structure analysis, Mathematics, Imaging"
PMC11223802,"The documentation panel enables easy navigation and provides a quick start guide, tips, and examples for using RNAscape.",FALSE,FALSE,"(111, 119, 'RNAscape', 'rnascape')","RNA, Nucleic acid structure analysis, Mathematics, Imaging"