-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathanalysis_report.json
More file actions
1676 lines (1676 loc) · 73.8 KB
/
analysis_report.json
File metadata and controls
1676 lines (1676 loc) · 73.8 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.2",
"model2": "gpt-4o-mini"
},
"total_repos": 30,
"agreement_statistics": {
"actor_unit": {
"agree": 18,
"disagree": 12,
"total": 30,
"agreement_percentage": 60.0,
"disagreements": [
{
"repo": "21cmfast/21cmFAST",
"url": "https://github.com/21cmfast/21cmFAST",
"model1_value": "Research group or lab",
"model2_value": "Institution (university, lab, government research organization)",
"model1_overridden": false,
"model2_overridden": false
},
{
"repo": "21cmfast/21cmEMU",
"url": "https://github.com/21cmfast/21cmEMU",
"model1_value": "Research group or lab",
"model2_value": "Institution (university, lab, government research organization)",
"model1_overridden": false,
"model2_overridden": false
},
{
"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/3D-e-Chem-VM",
"url": "https://github.com/3D-e-Chem/3D-e-Chem-VM",
"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-klifs",
"url": "https://github.com/3D-e-Chem/knime-klifs",
"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-kripodb",
"url": "https://github.com/3D-e-Chem/knime-kripodb",
"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-molviewer",
"url": "https://github.com/3D-e-Chem/knime-molviewer",
"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-sstea",
"url": "https://github.com/3D-e-Chem/knime-sstea",
"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-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/kripodb",
"url": "https://github.com/3D-e-Chem/kripodb",
"model1_value": "Research group or lab",
"model2_value": "Institution (university, lab, government research organization)",
"model1_overridden": false,
"model2_overridden": false
},
{
"repo": "3D-e-Chem/sygma",
"url": "https://github.com/3D-e-Chem/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/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
}
]
},
"supply_chain_role": {
"agree": 20,
"disagree": 10,
"total": 30,
"agreement_percentage": 66.66666666666666,
"disagreements": [
{
"repo": "0x0f0f0f/Metatheory.jl",
"url": "https://github.com/0x0f0f0f/Metatheory.jl",
"model1_value": "Dependency software artifact",
"model2_value": "Application software",
"model1_overridden": false,
"model2_overridden": false
},
{
"repo": "1313e/PRISM",
"url": "https://github.com/1313e/PRISM",
"model1_value": "Dependency software artifact",
"model2_value": "Application software",
"model1_overridden": false,
"model2_overridden": false
},
{
"repo": "21cmfast/21cmEMU",
"url": "https://github.com/21cmfast/21cmEMU",
"model1_value": "Dependency software artifact",
"model2_value": "Application software",
"model1_overridden": false,
"model2_overridden": false
},
{
"repo": "2decomp-fft/2decomp-fft",
"url": "https://github.com/2decomp-fft/2decomp-fft",
"model1_value": "Dependency software artifact",
"model2_value": "Application software",
"model1_overridden": false,
"model2_overridden": false
},
{
"repo": "3D-e-Chem/3D-e-Chem-VM",
"url": "https://github.com/3D-e-Chem/3D-e-Chem-VM",
"model1_value": "Infrastructure",
"model2_value": "Application software",
"model1_overridden": false,
"model2_overridden": false
},
{
"repo": "3D-e-Chem/knime-python-node-archetype",
"url": "https://github.com/3D-e-Chem/knime-python-node-archetype",
"model1_value": "Dependency software artifact",
"model2_value": "Application software",
"model1_overridden": false,
"model2_overridden": false
},
{
"repo": "3D-e-Chem/knime-python-wrapper",
"url": "https://github.com/3D-e-Chem/knime-python-wrapper",
"model1_value": "Dependency software artifact",
"model2_value": "Application software",
"model1_overridden": false,
"model2_overridden": false
},
{
"repo": "3D-e-Chem/knime-testflow",
"url": "https://github.com/3D-e-Chem/knime-testflow",
"model1_value": "Dependency software artifact",
"model2_value": "Application software",
"model1_overridden": false,
"model2_overridden": false
},
{
"repo": "3D-e-Chem/sygma",
"url": "https://github.com/3D-e-Chem/sygma",
"model1_value": "Dependency software artifact",
"model2_value": "Application software",
"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": "Dependency software artifact",
"model2_value": "Application software",
"model1_overridden": false,
"model2_overridden": false
}
]
},
"research_role": {
"agree": 24,
"disagree": 6,
"total": 30,
"agreement_percentage": 80.0,
"disagreements": [
{
"repo": "0x0f0f0f/Metatheory.jl",
"url": "https://github.com/0x0f0f0f/Metatheory.jl",
"model1_value": "Research-support tooling",
"model2_value": "Direct research execution",
"model1_overridden": false,
"model2_overridden": false
},
{
"repo": "1313e/PRISM",
"url": "https://github.com/1313e/PRISM",
"model1_value": "Research-support tooling",
"model2_value": "Direct research execution",
"model1_overridden": true,
"model2_overridden": false
},
{
"repo": "21cmfast/21cmEMU",
"url": "https://github.com/21cmfast/21cmEMU",
"model1_value": "Research-support tooling",
"model2_value": "Direct research execution",
"model1_overridden": true,
"model2_overridden": false
},
{
"repo": "3D-e-Chem/knime-python-wrapper",
"url": "https://github.com/3D-e-Chem/knime-python-wrapper",
"model1_value": "Research-support tooling",
"model2_value": "Direct research execution",
"model1_overridden": false,
"model2_overridden": false
},
{
"repo": "3D-e-Chem/knime-testflow",
"url": "https://github.com/3D-e-Chem/knime-testflow",
"model1_value": "Research-support tooling",
"model2_value": "Direct research execution",
"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-support tooling",
"model2_value": "Direct research execution",
"model1_overridden": false,
"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": "Builds and releases",
"model2_value": "Network service",
"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": 9,
"model2_override_count": 7,
"both_overridden_count": 5,
"override_led_to_agreement": 9,
"override_led_to_disagreement": 2
},
"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.2": {
"actor_unit": {
"Institution (university, lab, government research organization)": 12,
"Individual maintainer": 5,
"Vendor or commercial entity": 1,
"Research group or lab": 11,
"Community or foundation (open source governance)": 1
},
"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
}
},
"gpt-4o-mini": {
"actor_unit": {
"Institution (university, lab, government research organization)": 24,
"Individual maintainer": 5,
"Vendor or commercial entity": 1
},
"supply_chain_role": {
"Application software": 29,
"Dependency software artifact": 1
},
"research_role": {
"Research-support tooling": 8,
"Direct research execution": 22
},
"distribution_pathway": {
"Installer or binary": 2,
"Package registry": 22,
"Builds and releases": 1,
"Network service": 2,
"Source repo": 2,
"Containers": 1
}
}
},
"repositories": [
{
"full_name": "0satoken/Eclairs",
"url": "https://github.com/0satoken/Eclairs",
"classifications": {
"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-22T02:32:57Z"
},
"gpt-4o-mini": {
"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.\"",
"The basic usage is `> ./eclairs [initial parameter file]` which indicates it is an application software.",
"Software that directly generates, transforms, or analyzes scientific data or models in a way that contributes to research findings."
],
"model": "gpt-4o-mini",
"overrides_applied": {
"actor_unit": true,
"research_role": true,
"distribution_pathway": true
},
"timestamp_utc": "2026-01-22T02:47:18Z"
}
}
},
{
"full_name": "0x0f0f0f/Metatheory.jl",
"url": "https://github.com/0x0f0f0f/Metatheory.jl",
"classifications": {
"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 ... library for the Julia programming language\" and \"can manipulate any kind of Julia symbolic expression type\" (i.e., a reusable package consumed by other code)."
],
"model": "gpt-5.2",
"overrides_applied": {
"actor_unit": true,
"research_role": false,
"distribution_pathway": true
},
"timestamp_utc": "2026-01-22T02:33:02Z"
},
"gpt-4o-mini": {
"actor_unit": "Institution (university, lab, government research organization)",
"supply_chain_role": "Application software",
"research_role": "Direct research execution",
"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.",
"Metatheory.jl transforms Julia expressions in other Julia expressions and can achieve such at both compile and run time."
],
"model": "gpt-4o-mini",
"overrides_applied": {
"actor_unit": true,
"research_role": false,
"distribution_pathway": true
},
"timestamp_utc": "2026-01-22T02:47:21Z"
}
}
},
{
"full_name": "0xCoto/Virgo",
"url": "https://github.com/0xCoto/Virgo",
"classifications": {
"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) and README credits a single creator: \"Virgo was created by Apostolos Spanakis-Misirlis\".",
"README: \"Virgo is an easy-to-use open-source spectrometer and radiometer... In addition to data acquisition, Virgo also 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-22T02:33:05Z"
},
"gpt-4o-mini": {
"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 based on Python and GNU Radio that is conveniently applicable to any radio telescope working with a GR-supported software-defined radio (SDR).",
"Virgo tackles this problem by providing non-experts with a tool to collect and interpret data from radio telescopes, without requiring expertise in digital signal processing and software engineering."
],
"model": "gpt-4o-mini",
"overrides_applied": {
"actor_unit": false,
"research_role": false,
"distribution_pathway": true
},
"timestamp_utc": "2026-01-22T02:47:25Z"
}
}
},
{
"full_name": "1054/Crab.Toolkit.michi2",
"url": "https://github.com/1054/Crab.Toolkit.michi2",
"classifications": {
"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 model fitting (e.g., \"michi2-run-SED-fitting-v5\" and \"michi2_v05 ... -obs ... -lib ...\"), indicating an application users execute."
],
"model": "gpt-5.2",
"overrides_applied": {
"actor_unit": false,
"research_role": false,
"distribution_pathway": true
},
"timestamp_utc": "2026-01-21T20:49:25Z"
},
"gpt-4o-mini": {
"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.",
"The output of michi2 SED fitting will be: fit_5.out, fit_5.out.info, results_fit_5/*, which indicates it directly generates results from the fitting process."
],
"model": "gpt-4o-mini",
"overrides_applied": {
"actor_unit": false,
"research_role": false,
"distribution_pathway": true
},
"timestamp_utc": "2026-01-21T20:49:52Z"
}
}
},
{
"full_name": "10XGenomics/bamtofastq",
"url": "https://github.com/10XGenomics/bamtofastq",
"classifications": {
"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_type is Organization and owner_login is 10XGenomics (a commercial vendor).",
"README describes an end-user tool: \"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-22T02:33:08Z"
},
"gpt-4o-mini": {
"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.",
"The FASTQ files emitted by the tool should contain the same set of sequences that were input to the original pipeline run, although the order will not be preserved."
],
"model": "gpt-4o-mini",
"overrides_applied": {
"actor_unit": false,
"research_role": false,
"distribution_pathway": true
},
"timestamp_utc": "2026-01-22T02:47:29Z"
}
}
},
{
"full_name": "1313e/CMasher",
"url": "https://github.com/1313e/CMasher",
"classifications": {
"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 project.",
"README: \"The CMasher package provides a collection of scientific colormaps and utility functions to be used by different Python packages and projects\" and \"CMasher can now be imported as a package with import cmasher as cmr\" (library/dependency use)."
],
"model": "gpt-5.2",
"overrides_applied": {
"actor_unit": false,
"research_role": true,
"distribution_pathway": true
},
"timestamp_utc": "2026-01-22T02:38:42Z"
},
"gpt-4o-mini": {
"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.",
"*CMasher* can be easily installed directly from `PyPI`_ with: $ pip install cmasher"
],
"model": "gpt-4o-mini",
"overrides_applied": {
"actor_unit": false,
"research_role": false,
"distribution_pathway": true
},
"timestamp_utc": "2026-01-22T02:47:34Z"
}
}
},
{
"full_name": "1313e/PRISM",
"url": "https://github.com/1313e/PRISM",
"classifications": {
"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\" and \"can now be imported as a package with `import prism`\" (library/package usage)."
],
"model": "gpt-5.2",
"overrides_applied": {
"actor_unit": true,
"research_role": true,
"distribution_pathway": true
},
"timestamp_utc": "2026-01-22T02:38:46Z"
},
"gpt-4o-mini": {
"actor_unit": "Institution (university, lab, government research organization)",
"supply_chain_role": "Application software",
"research_role": "Direct research execution",
"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 additionally be used as a standalone alternative to MCMC for model analysis, providing insight into the behavior of complex scientific models."
],
"model": "gpt-4o-mini",
"overrides_applied": {
"actor_unit": true,
"research_role": false,
"distribution_pathway": true
},
"timestamp_utc": "2026-01-22T02:47:37Z"
}
}
},
{
"full_name": "18parkky/NanoMnT",
"url": "https://github.com/18parkky/NanoMnT",
"classifications": {
"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), suggesting an individually maintained repo.",
"README: \"A collection of Python scripts for (1) correcting sequencing errors within STR regions... and (2) genotyping monoallelic STR regions.\""
],
"model": "gpt-5.2",
"overrides_applied": {
"actor_unit": false,
"research_role": false,
"distribution_pathway": true
},
"timestamp_utc": "2026-01-22T02:38:49Z"
},
"gpt-4o-mini": {
"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 has been tested in Python version 3.9.7. and should work in later versions."
],
"model": "gpt-4o-mini",
"overrides_applied": {
"actor_unit": false,
"research_role": false,
"distribution_pathway": true
},
"timestamp_utc": "2026-01-22T02:47:40Z"
}
}
},
{
"full_name": "21cmfast/21cmFAST",
"url": "https://github.com/21cmfast/21cmFAST",
"classifications": {
"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\" and owner_login is \"21cmfast\" (project org rather than an individual).",
"README: \"A semi-numerical cosmological simulation code for the radio 21-cm signal.\" and \"able to produce 3D cosmological realisations...\" (end-user simulation application producing scientific outputs)."
],
"model": "gpt-5.2",
"overrides_applied": {
"actor_unit": false,
"research_role": false,
"distribution_pathway": true
},
"timestamp_utc": "2026-01-22T02:38:53Z"
},
"gpt-4o-mini": {
"actor_unit": "Institution (university, lab, government research organization)",
"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-4o-mini",
"overrides_applied": {
"actor_unit": false,
"research_role": false,
"distribution_pathway": true
},
"timestamp_utc": "2026-01-22T02:47:45Z"
}
}
},
{
"full_name": "21cmfast/21cmEMU",
"url": "https://github.com/21cmfast/21cmEMU",
"classifications": {
"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 is Organization (21cmfast), indicating a project/group account rather than an individual.",
"README: PyPI badge and link target \"https://pypi.org/project/py21cmemu/\" indicate distribution via a package registry."
],
"model": "gpt-5.2",
"overrides_applied": {
"actor_unit": false,
"research_role": true,
"distribution_pathway": true
},
"timestamp_utc": "2026-01-22T02:38:57Z"
},
"gpt-4o-mini": {
"actor_unit": "Institution (university, lab, government research organization)",
"supply_chain_role": "Application software",
"research_role": "Direct research execution",
"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.",
"If you use ``21cmEMU`` in your research, please cite `Breitman+23 <https://arxiv.org/abs/2309.05697>`_."
],
"model": "gpt-4o-mini",
"overrides_applied": {
"actor_unit": false,
"research_role": false,
"distribution_pathway": true
},
"timestamp_utc": "2026-01-22T02:47:48Z"
}
}
},
{
"full_name": "2decomp-fft/2decomp-fft",
"url": "https://github.com/2decomp-fft/2decomp-fft",
"classifications": {
"gpt-5.2": {
"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": [
"(metadata) GitHub owner_type is Organization (2decomp-fft), suggesting stewardship beyond a single individual.",
"README: \"building and installing the 2DECOMP&FFT library\" and \"linking to the library within an external project\" (intended to be used as a library dependency).",
"README provides CMake build/install-from-source instructions (e.g., \"cmake -S . -B build\" and \"cmake --install\"), with no package-registry or container install path described."
],
"model": "gpt-5.2",
"overrides_applied": {
"actor_unit": false,
"research_role": true,
"distribution_pathway": false
},
"timestamp_utc": "2026-01-22T02:45:39Z"
},
"gpt-4o-mini": {
"actor_unit": "Institution (university, lab, government research organization)",
"supply_chain_role": "Application software",
"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.",
"The library can perform multi GPU offloading using the NVHPC compiler suite for NVIDIA hardware.",
"Software that directly generates, transforms, or analyzes scientific data or models in a way that contributes to research findings."
],
"model": "gpt-4o-mini",
"overrides_applied": {
"actor_unit": false,
"research_role": true,
"distribution_pathway": false
},
"timestamp_utc": "2026-01-22T02:47:54Z"
}
}
},
{
"full_name": "3D-e-Chem/3D-e-Chem-VM",
"url": "https://github.com/3D-e-Chem/3D-e-Chem-VM",
"classifications": {
"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 (3D-e-Chem), indicating a group/project rather than an individual maintainer.",
"README: \"Scripts to create a Vagrant box using packer and ansible.\" (builds a VM environment)",
"README: \"vagrant init nlesc/3d-e-chem\" and \"Publish box on https://app.vagrantup.com/nlesc/boxes/3d-e-chem\" (distributed as a built Vagrant box/release artifact rather than only source)"
],
"model": "gpt-5.2",
"overrides_applied": {
"actor_unit": false,
"research_role": false,
"distribution_pathway": false
},
"timestamp_utc": "2026-01-22T02:45:42Z"
},
"gpt-4o-mini": {
"actor_unit": "Institution (university, lab, government research organization)",
"supply_chain_role": "Application software",
"research_role": "Research-support tooling",
"distribution_pathway": "Network service",
"distribution_details": null,
"evidence": [
"Scripts to create a Vagrant box using packer and ansible.",
"Create a new directory and cd to it then start virtual machine with vagrant init nlesc/3d-e-chem.",
"Publish box on https://app.vagrantup.com/nlesc/boxes/3d-e-chem using the following steps:"
],
"model": "gpt-4o-mini",
"overrides_applied": {
"actor_unit": false,
"research_role": true,
"distribution_pathway": false
},
"timestamp_utc": "2026-01-22T02:47:56Z"
}
}
},
{
"full_name": "3D-e-Chem/knime-gpcrdb",
"url": "https://github.com/3D-e-Chem/knime-gpcrdb",
"classifications": {
"gpt-5.2": {
"actor_unit": "Institution (university, lab, government research organization)",
"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 an institutional/organizational maintainer rather than an individual.",
"README: \"KNIME plugin for retrieving data from https://gpcrdb.org\" and installation is via KNIME 'Install new software', indicating an end-user plugin (application component) used in KNIME workflows."
],
"model": "gpt-5.2",
"overrides_applied": {
"actor_unit": false,
"research_role": true,
"distribution_pathway": true
},
"timestamp_utc": "2026-01-22T02:45:45Z"
},
"gpt-4o-mini": {
"actor_unit": "Institution (university, lab, government research organization)",
"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",
"Steps to get GPCRDB nodes inside KNIME: 1. Goto Help > Install new software ... menu"
],
"model": "gpt-4o-mini",
"overrides_applied": {
"actor_unit": false,
"research_role": true,
"distribution_pathway": true
},
"timestamp_utc": "2026-01-22T02:47:58Z"
}
}
},
{
"full_name": "3D-e-Chem/knime-klifs",
"url": "https://github.com/3D-e-Chem/knime-klifs",
"classifications": {
"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: GitHub owner_type is Organization (3D-e-Chem), indicating a group-maintained project rather than an individual.",
"README: \"KNIME nodes for retrieving data from KLIFS\" and installation into KNIME via an update site indicates an end-user tool/plugin (application) used in workflows."
],
"model": "gpt-5.2",
"overrides_applied": {
"actor_unit": false,
"research_role": true,
"distribution_pathway": true
},
"timestamp_utc": "2026-01-22T02:45:50Z"
},
"gpt-4o-mini": {
"actor_unit": "Institution (university, lab, government research organization)",
"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/).",
"Steps to get KLIFS nodes inside KNIME: Goto Help > Install new software ... menu."
],
"model": "gpt-4o-mini",
"overrides_applied": {
"actor_unit": false,
"research_role": true,
"distribution_pathway": true
},
"timestamp_utc": "2026-01-22T02:48:01Z"
}
}
},
{
"full_name": "3D-e-Chem/knime-kripodb",
"url": "https://github.com/3D-e-Chem/knime-kripodb",
"classifications": {
"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 is Organization (3D-e-Chem), indicating a group/project rather than an individual.",
"README: \"[KNIME] nodes for KripoDB\" and installation steps to \"get KripoDB nodes inside KNIME\" indicate an end-user tool run in KNIME (application-facing)."
],
"model": "gpt-5.2",
"overrides_applied": {
"actor_unit": false,
"research_role": false,
"distribution_pathway": true
},
"timestamp_utc": "2026-01-22T02:45:53Z"
},
"gpt-4o-mini": {
"actor_unit": "Institution (university, lab, government research organization)",
"supply_chain_role": "Application software",
"research_role": "Direct research execution",
"distribution_pathway": "Package registry",
"distribution_details": "Maven/Gradle ecosystem",
"evidence": [