-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomparison_5.1_vs_5.2.json
More file actions
1518 lines (1518 loc) · 69.4 KB
/
comparison_5.1_vs_5.2.json
File metadata and controls
1518 lines (1518 loc) · 69.4 KB
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
{
"models_compared": {
"model1": "gpt-5.1",
"model2": "gpt-5.2"
},
"total_repos": 30,
"agreement_statistics": {
"actor_unit": {
"agree": 25,
"disagree": 5,
"total": 30,
"agreement_percentage": 83.33333333333334,
"disagreements": [
{
"repo": "2decomp-fft/2decomp-fft",
"url": "https://github.com/2decomp-fft/2decomp-fft",
"model1_value": "Community or foundation (open source governance)",
"model2_value": "Institution (university, lab, government research organization)",
"model1_overridden": false,
"model2_overridden": false
},
{
"repo": "3D-e-Chem/knime-sygma",
"url": "https://github.com/3D-e-Chem/knime-sygma",
"model1_value": "Research group or lab",
"model2_value": "Institution (university, lab, government research organization)",
"model1_overridden": false,
"model2_overridden": false
},
{
"repo": "3D-e-Chem/knime-testflow",
"url": "https://github.com/3D-e-Chem/knime-testflow",
"model1_value": "Research group or lab",
"model2_value": "Institution (university, lab, government research organization)",
"model1_overridden": false,
"model2_overridden": false
},
{
"repo": "3D-e-Chem/tycho-knime-node-archetype",
"url": "https://github.com/3D-e-Chem/tycho-knime-node-archetype",
"model1_value": "Research group or lab",
"model2_value": "Institution (university, lab, government research organization)",
"model1_overridden": false,
"model2_overridden": false
},
{
"repo": "3d-pli/fastpli",
"url": "https://github.com/3d-pli/fastpli",
"model1_value": "Research group or lab",
"model2_value": "Institution (university, lab, government research organization)",
"model1_overridden": false,
"model2_overridden": false
}
]
},
"supply_chain_role": {
"agree": 28,
"disagree": 2,
"total": 30,
"agreement_percentage": 93.33333333333333,
"disagreements": [
{
"repo": "3D-e-Chem/knime-python-node-archetype",
"url": "https://github.com/3D-e-Chem/knime-python-node-archetype",
"model1_value": "Application software",
"model2_value": "Dependency software artifact",
"model1_overridden": false,
"model2_overridden": false
},
{
"repo": "3D-e-Chem/tycho-knime-node-archetype",
"url": "https://github.com/3D-e-Chem/tycho-knime-node-archetype",
"model1_value": "Application software",
"model2_value": "Dependency software artifact",
"model1_overridden": false,
"model2_overridden": false
}
]
},
"research_role": {
"agree": 29,
"disagree": 1,
"total": 30,
"agreement_percentage": 96.66666666666667,
"disagreements": [
{
"repo": "3D-e-Chem/tycho-knime-node-archetype",
"url": "https://github.com/3D-e-Chem/tycho-knime-node-archetype",
"model1_value": "Direct research execution",
"model2_value": "Research-support tooling",
"model1_overridden": true,
"model2_overridden": false
}
]
},
"distribution_pathway": {
"agree": 29,
"disagree": 1,
"total": 30,
"agreement_percentage": 96.66666666666667,
"disagreements": [
{
"repo": "3D-e-Chem/3D-e-Chem-VM",
"url": "https://github.com/3D-e-Chem/3D-e-Chem-VM",
"model1_value": "Containers",
"model2_value": "Builds and releases",
"model1_overridden": false,
"model2_overridden": false
}
]
}
},
"override_statistics": {
"actor_unit": {
"model1_override_count": 4,
"model2_override_count": 4,
"both_overridden_count": 4,
"override_led_to_agreement": 4,
"override_led_to_disagreement": 0
},
"supply_chain_role": {
"model1_override_count": 0,
"model2_override_count": 0,
"both_overridden_count": 0,
"override_led_to_agreement": 0,
"override_led_to_disagreement": 0
},
"research_role": {
"model1_override_count": 12,
"model2_override_count": 8,
"both_overridden_count": 8,
"override_led_to_agreement": 11,
"override_led_to_disagreement": 1
},
"distribution_pathway": {
"model1_override_count": 26,
"model2_override_count": 26,
"both_overridden_count": 26,
"override_led_to_agreement": 26,
"override_led_to_disagreement": 0
}
},
"label_distributions": {
"gpt-5.1": {
"actor_unit": {
"Institution (university, lab, government research organization)": 4,
"Individual maintainer": 5,
"Vendor or commercial entity": 1,
"Research group or lab": 19,
"Community or foundation (open source governance)": 1
},
"supply_chain_role": {
"Application software": 21,
"Dependency software artifact": 8,
"Infrastructure": 1
},
"research_role": {
"Research-support tooling": 13,
"Direct research execution": 17
},
"distribution_pathway": {
"Installer or binary": 2,
"Package registry": 22,
"Builds and releases": 1,
"Network service": 1,
"Source repo": 2,
"Containers": 2
}
},
"gpt-5.2": {
"actor_unit": {
"Institution (university, lab, government research organization)": 9,
"Individual maintainer": 5,
"Vendor or commercial entity": 1,
"Research group or lab": 15
},
"supply_chain_role": {
"Application software": 19,
"Dependency software artifact": 10,
"Infrastructure": 1
},
"research_role": {
"Research-support tooling": 14,
"Direct research execution": 16
},
"distribution_pathway": {
"Installer or binary": 2,
"Package registry": 22,
"Builds and releases": 2,
"Network service": 1,
"Source repo": 2,
"Containers": 1
}
}
},
"repositories": [
{
"full_name": "0satoken/Eclairs",
"url": "https://github.com/0satoken/Eclairs",
"classifications": {
"gpt-5.1": {
"actor_unit": "Institution (university, lab, government research organization)",
"supply_chain_role": "Application software",
"research_role": "Research-support tooling",
"distribution_pathway": "Installer or binary",
"distribution_details": null,
"evidence": [
"README mentions binaries/installers: \"We will put the download link later (hopefully, in April 2024) on this repository.\"",
"Author: Ken Osato Contributors: Takahiro Nishimichi, Francis Bernardeau, and Atsushi Taruya",
"Then, running `make` creates an executable `eclairs`. The basic usage is `./eclairs [initial parameter file]`"
],
"model": "gpt-5.1",
"overrides_applied": {
"actor_unit": true,
"research_role": true,
"distribution_pathway": true
},
"timestamp_utc": "2026-01-22T03:57:42Z"
},
"gpt-5.2": {
"actor_unit": "Institution (university, lab, government research organization)",
"supply_chain_role": "Application software",
"research_role": "Research-support tooling",
"distribution_pathway": "Installer or binary",
"distribution_details": null,
"evidence": [
"README mentions binaries/installers: \"We will put the download link later (hopefully, in April 2024) on this repository.\"",
"Metadata: owner_type is User (owner_login: 0satoken) and README lists a single \"Author: Ken Osato\".",
"README: \"running `make` creates an executable `eclairs`. The basic usage is `> ./eclairs [initial parameter file]`\" (end-user executable)."
],
"model": "gpt-5.2",
"overrides_applied": {
"actor_unit": true,
"research_role": true,
"distribution_pathway": true
},
"timestamp_utc": "2026-01-22T03:59:33Z"
}
}
},
{
"full_name": "0x0f0f0f/Metatheory.jl",
"url": "https://github.com/0x0f0f0f/Metatheory.jl",
"classifications": {
"gpt-5.1": {
"actor_unit": "Institution (university, lab, government research organization)",
"supply_chain_role": "Dependency software artifact",
"research_role": "Research-support tooling",
"distribution_pathway": "Package registry",
"distribution_details": "Julia General registry",
"evidence": [
"README install command: \"julia> using Pkg; Pkg.add(\"Metatheory\")\"",
"\"Metatheory.jl is a general purpose term rewriting, metaprogramming and algebraic computation library for the Julia programming language\" (library intended to be used by other Julia code).",
"\"You can install the stable version: ```julia> using Pkg; Pkg.add(\"Metatheory\")```\" (installation via Julia package registry)."
],
"model": "gpt-5.1",
"overrides_applied": {
"actor_unit": true,
"research_role": true,
"distribution_pathway": true
},
"timestamp_utc": "2026-01-22T03:57:48Z"
},
"gpt-5.2": {
"actor_unit": "Institution (university, lab, government research organization)",
"supply_chain_role": "Dependency software artifact",
"research_role": "Research-support tooling",
"distribution_pathway": "Package registry",
"distribution_details": "Julia General registry",
"evidence": [
"README install command: \"julia> using Pkg; Pkg.add(\"Metatheory\")\"",
"Metadata: owner_type is \"User\" (owner_login: 0x0f0f0f), suggesting an individually maintained project.",
"README: \"Metatheory.jl is a general purpose term rewriting, metaprogramming and algebraic computation library for the Julia programming language\" (library intended to be used by other Julia code)."
],
"model": "gpt-5.2",
"overrides_applied": {
"actor_unit": true,
"research_role": false,
"distribution_pathway": true
},
"timestamp_utc": "2026-01-22T03:59:37Z"
}
}
},
{
"full_name": "0xCoto/Virgo",
"url": "https://github.com/0xCoto/Virgo",
"classifications": {
"gpt-5.1": {
"actor_unit": "Individual maintainer",
"supply_chain_role": "Application software",
"research_role": "Direct research execution",
"distribution_pathway": "Package registry",
"distribution_details": "PyPI",
"evidence": [
"README install command: \"pip install astro-virgo\"",
"\"Virgo is an easy-to-use open-source spectrometer and radiometer ... applicable to any radio telescope ... In addition to data acquisition, Virgo also carries out automated analysis of the recorded samples, producing an averaged spectrum, a calibrated spectrum, a dynamic spectrum (waterfall), a time series ...\"",
"\"Works directly from the command line (`virgo -h`), or as a Python module\""
],
"model": "gpt-5.1",
"overrides_applied": {
"actor_unit": false,
"research_role": false,
"distribution_pathway": true
},
"timestamp_utc": "2026-01-22T03:57:53Z"
},
"gpt-5.2": {
"actor_unit": "Individual maintainer",
"supply_chain_role": "Application software",
"research_role": "Direct research execution",
"distribution_pathway": "Package registry",
"distribution_details": "PyPI",
"evidence": [
"README install command: \"pip install astro-virgo\"",
"Metadata: owner_type is \"User\" (owner_login: 0xCoto), suggesting an individually maintained repository.",
"README: \"Virgo is an easy-to-use open-source spectrometer and radiometer...\" and it \"carries out automated analysis... producing an averaged spectrum, a calibrated spectrum, a dynamic spectrum...\""
],
"model": "gpt-5.2",
"overrides_applied": {
"actor_unit": false,
"research_role": false,
"distribution_pathway": true
},
"timestamp_utc": "2026-01-22T03:59:40Z"
}
}
},
{
"full_name": "1054/Crab.Toolkit.michi2",
"url": "https://github.com/1054/Crab.Toolkit.michi2",
"classifications": {
"gpt-5.1": {
"actor_unit": "Individual maintainer",
"supply_chain_role": "Application software",
"research_role": "Direct research execution",
"distribution_pathway": "Installer or binary",
"distribution_details": null,
"evidence": [
"README mentions binaries/installers: \"### 1. Download the code\"",
"\"This is a _Crab_ toolkit for minimumizing chi2 for any 1D model fit, for example, galaxy SED fitting, molecular line ladder fitting.\"",
"Usage instructions show running commands like `michi2-run-SED-fitting-v5` and `michi2_v05` directly on scientific data files to produce fitting results and plots (e.g., \"The output of michi2 SED fitting will be: ... best-fit parameters, SED and figures.\")."
],
"model": "gpt-5.1",
"overrides_applied": {
"actor_unit": false,
"research_role": false,
"distribution_pathway": true
},
"timestamp_utc": "2026-01-22T03:57:58Z"
},
"gpt-5.2": {
"actor_unit": "Individual maintainer",
"supply_chain_role": "Application software",
"research_role": "Direct research execution",
"distribution_pathway": "Installer or binary",
"distribution_details": null,
"evidence": [
"README mentions binaries/installers: \"### 1. Download the code\"",
"Metadata: owner_type is \"User\" (owner_login: 1054), suggesting an individually maintained repository.",
"README describes running end-user commands to perform SED/LVG fitting (e.g., \"michi2-run-SED-fitting-v5\" and \"michi2_v05 ... -obs ... -lib ...\"), indicating an executable research application."
],
"model": "gpt-5.2",
"overrides_applied": {
"actor_unit": false,
"research_role": false,
"distribution_pathway": true
},
"timestamp_utc": "2026-01-22T03:59:43Z"
}
}
},
{
"full_name": "10XGenomics/bamtofastq",
"url": "https://github.com/10XGenomics/bamtofastq",
"classifications": {
"gpt-5.1": {
"actor_unit": "Vendor or commercial entity",
"supply_chain_role": "Application software",
"research_role": "Direct research execution",
"distribution_pathway": "Builds and releases",
"distribution_details": "GitHub Releases",
"evidence": [
"README mentions releases: \"Download the latest release binaries for Linux or Mac from [the releases page](https://github.com/10XGenomics/bamtofastq/releases)\"",
"\"Tool for converting 10x BAMs produced by Cell Ranger, Space Ranger, Cell Ranger ATAC, Cell Ranger DNA, and Long Ranger back to FASTQ files that can be used as inputs to re-run analysis.\"",
"\"Download the latest release binaries for Linux or Mac from the releases page\""
],
"model": "gpt-5.1",
"overrides_applied": {
"actor_unit": false,
"research_role": false,
"distribution_pathway": true
},
"timestamp_utc": "2026-01-22T03:58:01Z"
},
"gpt-5.2": {
"actor_unit": "Vendor or commercial entity",
"supply_chain_role": "Application software",
"research_role": "Direct research execution",
"distribution_pathway": "Builds and releases",
"distribution_details": "GitHub Releases",
"evidence": [
"README mentions releases: \"Download the latest release binaries for Linux or Mac from [the releases page](https://github.com/10XGenomics/bamtofastq/releases)\"",
"Metadata: owner_login is \"10XGenomics\" (Organization), indicating a commercial vendor maintains the repo.",
"README: \"Tool for converting 10x BAMs ... back to FASTQ files that can be used as inputs to re-run analysis.\""
],
"model": "gpt-5.2",
"overrides_applied": {
"actor_unit": false,
"research_role": false,
"distribution_pathway": true
},
"timestamp_utc": "2026-01-22T03:59:46Z"
}
}
},
{
"full_name": "1313e/CMasher",
"url": "https://github.com/1313e/CMasher",
"classifications": {
"gpt-5.1": {
"actor_unit": "Individual maintainer",
"supply_chain_role": "Dependency software artifact",
"research_role": "Research-support tooling",
"distribution_pathway": "Package registry",
"distribution_details": "PyPI",
"evidence": [
"README install command: \"$ pip install cmasher\"",
"\"The CMasher package provides a collection of scientific colormaps and utility functions to be used by different Python packages and projects, mainly in combination with matplotlib\" (indicates it is imported as a component/library).",
"\"CMasher can now be imported as a package with `import cmasher as cmr`.\" (library-style usage, supports dependency role and direct use in generating plots/results)."
],
"model": "gpt-5.1",
"overrides_applied": {
"actor_unit": false,
"research_role": true,
"distribution_pathway": true
},
"timestamp_utc": "2026-01-22T03:58:04Z"
},
"gpt-5.2": {
"actor_unit": "Individual maintainer",
"supply_chain_role": "Dependency software artifact",
"research_role": "Research-support tooling",
"distribution_pathway": "Package registry",
"distribution_details": "PyPI",
"evidence": [
"README install command: \"$ pip install cmasher\"",
"Metadata: owner_type is \"User\" (owner_login: 1313e), suggesting an individually maintained repository.",
"README: \"The CMasher package provides a collection of scientific colormaps and utility functions to be used by different Python packages and projects\" and \"can now be imported as a package with import cmasher as cmr\" (library/dependency)."
],
"model": "gpt-5.2",
"overrides_applied": {
"actor_unit": false,
"research_role": false,
"distribution_pathway": true
},
"timestamp_utc": "2026-01-22T03:59:51Z"
}
}
},
{
"full_name": "1313e/PRISM",
"url": "https://github.com/1313e/PRISM",
"classifications": {
"gpt-5.1": {
"actor_unit": "Institution (university, lab, government research organization)",
"supply_chain_role": "Dependency software artifact",
"research_role": "Research-support tooling",
"distribution_pathway": "Package registry",
"distribution_details": "PyPI",
"evidence": [
"README install command: \"$ pip install .\"",
"\"PRISM is a pure Python 3 package that provides an alternative method to MCMC for analyzing scientific models.\"",
"\"PRISM can now be imported as a package with `import prism`.\""
],
"model": "gpt-5.1",
"overrides_applied": {
"actor_unit": true,
"research_role": true,
"distribution_pathway": true
},
"timestamp_utc": "2026-01-22T03:58:07Z"
},
"gpt-5.2": {
"actor_unit": "Institution (university, lab, government research organization)",
"supply_chain_role": "Dependency software artifact",
"research_role": "Research-support tooling",
"distribution_pathway": "Package registry",
"distribution_details": "PyPI",
"evidence": [
"README install command: \"$ pip install .\"",
"Metadata: owner_type is \"User\" (owner_login: 1313e), suggesting an individually maintained repository.",
"README: \"PRISM is a pure Python 3 package that provides an alternative method to MCMC for analyzing scientific models.\" and example shows importing (\"from prism import Pipeline\"), indicating a reusable library/package."
],
"model": "gpt-5.2",
"overrides_applied": {
"actor_unit": true,
"research_role": true,
"distribution_pathway": true
},
"timestamp_utc": "2026-01-22T03:59:55Z"
}
}
},
{
"full_name": "18parkky/NanoMnT",
"url": "https://github.com/18parkky/NanoMnT",
"classifications": {
"gpt-5.1": {
"actor_unit": "Individual maintainer",
"supply_chain_role": "Application software",
"research_role": "Direct research execution",
"distribution_pathway": "Package registry",
"distribution_details": "PyPI",
"evidence": [
"README install command: \"pip install .\"",
"\"A collection of Python scripts for (1) correcting sequencing errors within STR regions from Oxford Nanopore (ONT) sequencing data and (2) genotyping monoallelic STR regions.\"",
"\"NanoMnT requires Krait output files as inputs\" and commands like `estimateLociCoverage`, `getAlleleTable`, `getLocusTable`, and `findInformativeLoci` directly process sequencing/BAM data to generate analysis tables and MSI-related metrics."
],
"model": "gpt-5.1",
"overrides_applied": {
"actor_unit": false,
"research_role": false,
"distribution_pathway": true
},
"timestamp_utc": "2026-01-22T03:58:11Z"
},
"gpt-5.2": {
"actor_unit": "Individual maintainer",
"supply_chain_role": "Application software",
"research_role": "Direct research execution",
"distribution_pathway": "Package registry",
"distribution_details": "PyPI",
"evidence": [
"README install command: \"pip install .\"",
"Metadata: owner_type is \"User\" (owner_login: 18parkky), with no README indication of an institution, lab, or foundation maintaining it.",
"README: \"A collection of Python scripts for (1) correcting sequencing errors within STR regions... and (2) genotyping monoallelic STR regions.\" (end-user analysis scripts/commands)."
],
"model": "gpt-5.2",
"overrides_applied": {
"actor_unit": false,
"research_role": false,
"distribution_pathway": true
},
"timestamp_utc": "2026-01-22T03:59:58Z"
}
}
},
{
"full_name": "21cmfast/21cmFAST",
"url": "https://github.com/21cmfast/21cmFAST",
"classifications": {
"gpt-5.1": {
"actor_unit": "Research group or lab",
"supply_chain_role": "Application software",
"research_role": "Direct research execution",
"distribution_pathway": "Package registry",
"distribution_details": "conda-forge",
"evidence": [
"README install command: \"conda install -c conda-forge 21cmFAST\"",
"\"This is the official repository for ``21cmFAST``: a semi-numerical code that is able to produce 3D cosmological realisations of many physical fields in the early Universe.\"",
"\"21cmFAST has been widely used, for example, by the Murchison Widefield Array (MWA), LOw-Frequency ARray (LOFAR) and Hydrogen Epoch of Reionization Array (HERA), to model the large-scale cosmological 21-cm signal.\""
],
"model": "gpt-5.1",
"overrides_applied": {
"actor_unit": false,
"research_role": false,
"distribution_pathway": true
},
"timestamp_utc": "2026-01-22T03:58:16Z"
},
"gpt-5.2": {
"actor_unit": "Research group or lab",
"supply_chain_role": "Application software",
"research_role": "Direct research execution",
"distribution_pathway": "Package registry",
"distribution_details": "conda-forge",
"evidence": [
"README install command: \"conda install -c conda-forge 21cmFAST\"",
"Metadata: owner_type is Organization (21cmfast), indicating a project/group rather than an individual maintainer.",
"README: \"A semi-numerical cosmological simulation code for the radio 21-cm signal\" and \"produce 3D cosmological realisations...\" (end-user simulation application)."
],
"model": "gpt-5.2",
"overrides_applied": {
"actor_unit": false,
"research_role": false,
"distribution_pathway": true
},
"timestamp_utc": "2026-01-22T04:00:01Z"
}
}
},
{
"full_name": "21cmfast/21cmEMU",
"url": "https://github.com/21cmfast/21cmEMU",
"classifications": {
"gpt-5.1": {
"actor_unit": "Research group or lab",
"supply_chain_role": "Dependency software artifact",
"research_role": "Research-support tooling",
"distribution_pathway": "Network service",
"distribution_details": null,
"evidence": [
"README indicates network usage: \"See `the documentation <https://21cmemu.readthedocs.io/en/latest/>`_ for tutorials and API.\"",
"\"An emulator of 21cmFAST summaries. Emulate the following summary statistics: * 21-cm power spectrum ...\" (domain-specific scientific emulator, used in research).",
"PyPI badges and links: \"https://img.shields.io/pypi/v/py21cmemu.svg\" with target \"https://pypi.org/project/py21cmemu/\" (indicates distribution as a Python package via PyPI, i.e., dependency library)."
],
"model": "gpt-5.1",
"overrides_applied": {
"actor_unit": false,
"research_role": true,
"distribution_pathway": true
},
"timestamp_utc": "2026-01-22T03:58:19Z"
},
"gpt-5.2": {
"actor_unit": "Research group or lab",
"supply_chain_role": "Dependency software artifact",
"research_role": "Research-support tooling",
"distribution_pathway": "Network service",
"distribution_details": null,
"evidence": [
"README indicates network usage: \"See `the documentation <https://21cmemu.readthedocs.io/en/latest/>`_ for tutorials and API.\"",
"(metadata) owner_type: Organization; owner_login: 21cmfast",
"README: \"An emulator of 21cmFAST summaries.\""
],
"model": "gpt-5.2",
"overrides_applied": {
"actor_unit": false,
"research_role": true,
"distribution_pathway": true
},
"timestamp_utc": "2026-01-22T04:00:05Z"
}
}
},
{
"full_name": "2decomp-fft/2decomp-fft",
"url": "https://github.com/2decomp-fft/2decomp-fft",
"classifications": {
"gpt-5.1": {
"actor_unit": "Community or foundation (open source governance)",
"supply_chain_role": "Dependency software artifact",
"research_role": "Research-support tooling",
"distribution_pathway": "Source repo",
"distribution_details": null,
"evidence": [
"\"This README contains basic instructions for building and installing the 2DECOMP&FFT library, more detailed instructions about installation and linking to the library within an external project\"",
"\"Please have a look at HOWTO.md and at the examples ... for how to use the library with your application\"",
"\"The development of 2DECOMP&FFT occurs on Github, with release versions on the `main` branch.\""
],
"model": "gpt-5.1",
"overrides_applied": {
"actor_unit": false,
"research_role": true,
"distribution_pathway": false
},
"timestamp_utc": "2026-01-22T03:58:22Z"
},
"gpt-5.2": {
"actor_unit": "Institution (university, lab, government research organization)",
"supply_chain_role": "Dependency software artifact",
"research_role": "Research-support tooling",
"distribution_pathway": "Source repo",
"distribution_details": null,
"evidence": [
"Metadata: repo owner_type is Organization (2decomp-fft), indicating an organizational maintainer rather than an individual.",
"README: \"building and installing the 2DECOMP&FFT library\" and \"linking to the library within an external project\" / \"use the library with your application\" (library meant to be depended on).",
"README provides CMake build/install-from-source instructions (cmake configure/build/install) and does not mention a package registry, container image, or downloadable installer/binary."
],
"model": "gpt-5.2",
"overrides_applied": {
"actor_unit": false,
"research_role": true,
"distribution_pathway": false
},
"timestamp_utc": "2026-01-22T04:00:08Z"
}
}
},
{
"full_name": "3D-e-Chem/3D-e-Chem-VM",
"url": "https://github.com/3D-e-Chem/3D-e-Chem-VM",
"classifications": {
"gpt-5.1": {
"actor_unit": "Research group or lab",
"supply_chain_role": "Infrastructure",
"research_role": "Research-support tooling",
"distribution_pathway": "Containers",
"distribution_details": null,
"evidence": [
"\"3D-e-Chem-VM: Structural cheminformatics research infrastructure in a freely available Virtual Machine\"",
"\"Scripts to create a Vagrant box using packer and ansible.\"",
"\"vagrant init nlesc/3d-e-chem\" and references to publishing the box on Vagrant Cloud indicate distribution as a virtual machine image/box rather than via source or a package registry."
],
"model": "gpt-5.1",
"overrides_applied": {
"actor_unit": false,
"research_role": false,
"distribution_pathway": false
},
"timestamp_utc": "2026-01-22T03:58:24Z"
},
"gpt-5.2": {
"actor_unit": "Research group or lab",
"supply_chain_role": "Infrastructure",
"research_role": "Research-support tooling",
"distribution_pathway": "Builds and releases",
"distribution_details": null,
"evidence": [
"Metadata: owner_type is Organization and owner_login is \"3D-e-Chem\", indicating a project/group rather than an individual.",
"README: \"Scripts to create a Vagrant box using packer and ansible.\" (creates a VM environment).",
"README: \"Publish box on https://app.vagrantup.com/nlesc/boxes/3d-e-chem\" and upload the generated \".box\" file (distribution via built VM box release artifact)."
],
"model": "gpt-5.2",
"overrides_applied": {
"actor_unit": false,
"research_role": false,
"distribution_pathway": false
},
"timestamp_utc": "2026-01-22T04:00:11Z"
}
}
},
{
"full_name": "3D-e-Chem/knime-gpcrdb",
"url": "https://github.com/3D-e-Chem/knime-gpcrdb",
"classifications": {
"gpt-5.1": {
"actor_unit": "Research group or lab",
"supply_chain_role": "Application software",
"research_role": "Research-support tooling",
"distribution_pathway": "Package registry",
"distribution_details": "Maven/Gradle ecosystem",
"evidence": [
"README shows dependency/install info: \"mvn verify\"",
"\"KNIME plugin for retrieving data from https://gpcrdb.org, GPCRdb website contains data, web tools and diagrams for G protein-coupled receptors (GPCRs).\"",
"\"Steps to get GPCRDB nodes inside KNIME\" followed by KNIME GUI installation steps, indicating an end-user plugin application rather than a library dependency."
],
"model": "gpt-5.1",
"overrides_applied": {
"actor_unit": false,
"research_role": true,
"distribution_pathway": true
},
"timestamp_utc": "2026-01-22T03:58:29Z"
},
"gpt-5.2": {
"actor_unit": "Research group or lab",
"supply_chain_role": "Application software",
"research_role": "Research-support tooling",
"distribution_pathway": "Package registry",
"distribution_details": "Maven/Gradle ecosystem",
"evidence": [
"README shows dependency/install info: \"mvn verify\"",
"Metadata: owner_type is Organization (3D-e-Chem), indicating a group/project rather than an individual maintainer.",
"README: \"KNIME plugin for retrieving data from https://gpcrdb.org\" and installation is via KNIME 'Install new software' (end-user plugin usage)."
],
"model": "gpt-5.2",
"overrides_applied": {
"actor_unit": false,
"research_role": true,
"distribution_pathway": true
},
"timestamp_utc": "2026-01-22T04:00:14Z"
}
}
},
{
"full_name": "3D-e-Chem/knime-klifs",
"url": "https://github.com/3D-e-Chem/knime-klifs",
"classifications": {
"gpt-5.1": {
"actor_unit": "Research group or lab",
"supply_chain_role": "Application software",
"research_role": "Research-support tooling",
"distribution_pathway": "Package registry",
"distribution_details": "Maven/Gradle ecosystem",
"evidence": [
"README shows dependency/install info: \"mvn verify\"",
"\"KNIME nodes for retrieving data from KLIFS (https://klifs.net/). KLIFS is a structural kinase-ligand interaction database.\"",
"\"Steps to get KLIFS nodes inside KNIME: ... 6. Select KLIFS knime nodes 7. Install software & restart\""
],
"model": "gpt-5.1",
"overrides_applied": {
"actor_unit": false,
"research_role": true,
"distribution_pathway": true
},
"timestamp_utc": "2026-01-22T03:58:31Z"
},
"gpt-5.2": {
"actor_unit": "Research group or lab",
"supply_chain_role": "Application software",
"research_role": "Research-support tooling",
"distribution_pathway": "Package registry",
"distribution_details": "Maven/Gradle ecosystem",
"evidence": [
"README shows dependency/install info: \"mvn verify\"",
"(metadata) owner_type: Organization; owner_login: 3D-e-Chem (appears to be a research-group identity rather than an individual)",
"README: “KNIME nodes for retrieving data from KLIFS (https://klifs.net/). KLIFS is a structural kinase-ligand interaction database.” (end-user KNIME extension used to obtain research data)"
],
"model": "gpt-5.2",
"overrides_applied": {
"actor_unit": false,
"research_role": true,
"distribution_pathway": true
},
"timestamp_utc": "2026-01-22T04:00:17Z"
}
}
},
{
"full_name": "3D-e-Chem/knime-kripodb",
"url": "https://github.com/3D-e-Chem/knime-kripodb",
"classifications": {
"gpt-5.1": {
"actor_unit": "Research group or lab",
"supply_chain_role": "Application software",
"research_role": "Direct research execution",
"distribution_pathway": "Package registry",
"distribution_details": "Maven/Gradle ecosystem",
"evidence": [
"README shows dependency/install info: \"mvn package\"",
"\"KNIME nodes for KripoDB\" – provides domain-specific KNIME nodes as a tool used directly in workflows, i.e. an application extension rather than a generic library.",
"\"Steps to get KripoDB nodes inside KNIME\" followed by KNIME update site URL and installation steps – indicates users install and run this as an end-user tool within KNIME for workflows (direct research use)."
],
"model": "gpt-5.1",
"overrides_applied": {
"actor_unit": false,
"research_role": false,
"distribution_pathway": true
},
"timestamp_utc": "2026-01-22T03:58:34Z"
},
"gpt-5.2": {
"actor_unit": "Research group or lab",
"supply_chain_role": "Application software",
"research_role": "Direct research execution",
"distribution_pathway": "Package registry",
"distribution_details": "Maven/Gradle ecosystem",
"evidence": [
"README shows dependency/install info: \"mvn package\"",
"(metadata) owner_type: Organization; owner_login: 3D-e-Chem (appears to be a named research team/project rather than an individual)",
"README: \"[KNIME] nodes for KripoDB\" and \"Steps to get KripoDB nodes inside KNIME\" (end-user nodes installed and run in KNIME)"
],
"model": "gpt-5.2",
"overrides_applied": {
"actor_unit": false,
"research_role": false,
"distribution_pathway": true
},
"timestamp_utc": "2026-01-22T04:00:21Z"
}
}
},
{
"full_name": "3D-e-Chem/knime-molviewer",
"url": "https://github.com/3D-e-Chem/knime-molviewer",
"classifications": {
"gpt-5.1": {
"actor_unit": "Research group or lab",
"supply_chain_role": "Application software",
"research_role": "Direct research execution",
"distribution_pathway": "Package registry",
"distribution_details": "Maven/Gradle ecosystem",
"evidence": [
"README shows dependency/install info: \"mvn verify\"",
"\"KNIME node which launches a web browser with a molecule viewer powered by NGL.\"",
"\"If you are using KNIME workflows with large molecules and you want to view them in 3D then the molviewer nodes are able to handle this.\""
],
"model": "gpt-5.1",
"overrides_applied": {
"actor_unit": false,
"research_role": false,
"distribution_pathway": true
},
"timestamp_utc": "2026-01-22T03:58:37Z"
},
"gpt-5.2": {
"actor_unit": "Research group or lab",
"supply_chain_role": "Application software",
"research_role": "Direct research execution",
"distribution_pathway": "Package registry",
"distribution_details": "Maven/Gradle ecosystem",
"evidence": [
"README shows dependency/install info: \"mvn verify\"",
"Metadata: owner_type is Organization (3D-e-Chem), suggesting a group/project rather than an individual maintainer.",
"README: Described as a “KNIME node” that “launches a web browser with a molecule viewer” and “Adds nodes to KNIME to visualize proteins, small molecules and pharmacophores,” indicating an end-user tool (application) used within KNIME workflows."
],
"model": "gpt-5.2",
"overrides_applied": {
"actor_unit": false,
"research_role": false,
"distribution_pathway": true
},
"timestamp_utc": "2026-01-22T04:00:25Z"
}
}
},
{
"full_name": "3D-e-Chem/knime-pharmacophore",
"url": "https://github.com/3D-e-Chem/knime-pharmacophore",
"classifications": {
"gpt-5.1": {
"actor_unit": "Research group or lab",
"supply_chain_role": "Application software",
"research_role": "Direct research execution",
"distribution_pathway": "Package registry",
"distribution_details": "Maven/Gradle ecosystem",
"evidence": [
"README shows dependency/install info: \"mvn verify\"",
"\"[KNIME] plugin with nodes to convert and align pharmacophores.\"",
"\"Steps to get the Pharmacophore KNIME nodes inside KNIME: ... Install software\" (indicates end-user functionality inside KNIME for domain tasks)."
],
"model": "gpt-5.1",
"overrides_applied": {
"actor_unit": false,
"research_role": false,
"distribution_pathway": true
},
"timestamp_utc": "2026-01-22T03:58:40Z"
},
"gpt-5.2": {
"actor_unit": "Research group or lab",
"supply_chain_role": "Application software",
"research_role": "Direct research execution",
"distribution_pathway": "Package registry",
"distribution_details": "Maven/Gradle ecosystem",
"evidence": [
"README shows dependency/install info: \"mvn verify\"",
"Metadata: owner_type is Organization and owner_login is \"3D-e-Chem\" (suggesting a lab/project team rather than an individual).",
"README: \"[KNIME] plugin with nodes to convert and align pharmacophores.\" (end-user KNIME nodes used to perform a domain task)."
],
"model": "gpt-5.2",
"overrides_applied": {
"actor_unit": false,
"research_role": false,
"distribution_pathway": true
},
"timestamp_utc": "2026-01-22T04:00:29Z"
}
}
},
{
"full_name": "3D-e-Chem/knime-plants",
"url": "https://github.com/3D-e-Chem/knime-plants",
"classifications": {
"gpt-5.1": {
"actor_unit": "Research group or lab",
"supply_chain_role": "Application software",
"research_role": "Direct research execution",
"distribution_pathway": "Package registry",
"distribution_details": "Maven/Gradle ecosystem",
"evidence": [
"README shows dependency/install info: \"mvn verify\"",
"\"KNIME nodes to configure, run and analyze PLANTS protein-ligand docking\"",
"\"Included in PLANTS nodes plugin is the PLANTS executable with academic license\" and \"To use these nodes in a commercial manner you need to acquire a valid license yourself and configure the PLANTS node to use the commercial executable.\""
],
"model": "gpt-5.1",
"overrides_applied": {
"actor_unit": false,
"research_role": false,
"distribution_pathway": true
},
"timestamp_utc": "2026-01-22T03:58:43Z"
},
"gpt-5.2": {
"actor_unit": "Research group or lab",
"supply_chain_role": "Application software",
"research_role": "Direct research execution",
"distribution_pathway": "Package registry",
"distribution_details": "Maven/Gradle ecosystem",
"evidence": [
"README shows dependency/install info: \"mvn verify\"",
"Metadata: GitHub owner is an Organization (3D-e-Chem), suggesting maintenance by a research project/group rather than an individual.",
"README: \"KNIME nodes to configure, run and analyze PLANTS protein-ligand docking\" (end-user nodes used to run/analyze docking)."
],
"model": "gpt-5.2",
"overrides_applied": {
"actor_unit": false,
"research_role": false,
"distribution_pathway": true
},
"timestamp_utc": "2026-01-22T04:00:33Z"
}
}
},
{
"full_name": "3D-e-Chem/knime-python-node-archetype",
"url": "https://github.com/3D-e-Chem/knime-python-node-archetype",
"classifications": {
"gpt-5.1": {
"actor_unit": "Research group or lab",
"supply_chain_role": "Application software",
"research_role": "Research-support tooling",
"distribution_pathway": "Package registry",
"distribution_details": "Maven/Gradle ecosystem",
"evidence": [
"README shows dependency/install info: \"mvn archetype:generate -DarchetypeGroupId=nl.esciencecenter \\\"",