@datagrok/proteomics 1.0.1 → 1.2.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (116) hide show
  1. package/CHANGELOG.md +52 -3
  2. package/CLAUDE.md +178 -0
  3. package/README.md +195 -3
  4. package/detectors.js +152 -9
  5. package/dist/package-test.js +1 -1744
  6. package/dist/package-test.js.map +1 -1
  7. package/dist/package.js +1 -146
  8. package/dist/package.js.map +1 -1
  9. package/docs/personas-and-capabilities.md +165 -0
  10. package/files/demo/README.md +264 -0
  11. package/files/demo/cptac-spike-in.txt +1571 -0
  12. package/files/demo/enrichment-demo.csv +120 -0
  13. package/files/demo/fragpipe-smoke-test.tsv +11 -0
  14. package/files/demo/proteinGroups.txt +28 -0
  15. package/files/demo/spectronaut-hye-candidates.tsv +94 -0
  16. package/files/demo/spectronaut-hye-demo.tsv +8761 -0
  17. package/files/demo/spectronaut-hye-mix.tsv +8761 -0
  18. package/files/demo/spectronaut-hye-precursor-golden.json +938 -0
  19. package/files/demo/spectronaut-hye-precursor-golden.tsv +235 -0
  20. package/files/demo/spectronaut-hye-precursor.tsv +493 -0
  21. package/images/enrichment-crosslink.png +0 -0
  22. package/images/enrichment-term-selected.png +0 -0
  23. package/images/hero.png +0 -0
  24. package/images/pipeline.svg +80 -0
  25. package/package.json +88 -63
  26. package/scripts/deqms_de.R +60 -0
  27. package/scripts/limma_de.R +42 -0
  28. package/scripts/vsn_normalize.R +19 -0
  29. package/src/analysis/differential-expression.ts +450 -0
  30. package/src/analysis/enrichment-export.ts +101 -0
  31. package/src/analysis/enrichment.ts +602 -0
  32. package/src/analysis/experiment-setup.ts +199 -0
  33. package/src/analysis/imputation.ts +407 -0
  34. package/src/analysis/log2-scale.ts +139 -0
  35. package/src/analysis/normalization.ts +255 -0
  36. package/src/analysis/pca.ts +254 -0
  37. package/src/analysis/spc-storage.ts +515 -0
  38. package/src/analysis/spc.ts +544 -0
  39. package/src/analysis/subcellular-location.ts +431 -0
  40. package/src/demo/enrichment-demo.ts +94 -0
  41. package/src/demo/proteomics-demo.ts +123 -0
  42. package/src/global.d.ts +15 -0
  43. package/src/menu.ts +133 -0
  44. package/src/package-api.ts +136 -14
  45. package/src/package-test.ts +45 -20
  46. package/src/package.g.ts +161 -0
  47. package/src/package.ts +1029 -17
  48. package/src/panels/protein-focus.ts +63 -0
  49. package/src/panels/published-analysis-panel.ts +151 -0
  50. package/src/panels/uniprot-panel.ts +349 -0
  51. package/src/parsers/fragpipe-parser.ts +200 -0
  52. package/src/parsers/generic-parser.ts +197 -0
  53. package/src/parsers/maxquant-parser.ts +162 -0
  54. package/src/parsers/shared-utils.ts +163 -0
  55. package/src/parsers/spectronaut-candidates-parser.ts +307 -0
  56. package/src/parsers/spectronaut-parser.ts +604 -0
  57. package/src/publishing/assert-published-shape.ts +260 -0
  58. package/src/publishing/post-open-recovery.ts +104 -0
  59. package/src/publishing/publish-project.ts +515 -0
  60. package/src/publishing/publish-settings.ts +59 -0
  61. package/src/publishing/publish-state.ts +316 -0
  62. package/src/publishing/share-dialog.ts +171 -0
  63. package/src/publishing/trim-dataframe.ts +247 -0
  64. package/src/tests/analysis.ts +658 -0
  65. package/src/tests/enrichment-export.ts +61 -0
  66. package/src/tests/enrichment-visualization.ts +340 -0
  67. package/src/tests/enrichment.ts +224 -0
  68. package/src/tests/fragpipe-e2e.ts +74 -0
  69. package/src/tests/fragpipe-parser.ts +147 -0
  70. package/src/tests/gene-label-resolver.ts +387 -0
  71. package/src/tests/generic-parser.ts +152 -0
  72. package/src/tests/group-mean-correlation.ts +139 -0
  73. package/src/tests/log2-scale.ts +93 -0
  74. package/src/tests/organisms.ts +56 -0
  75. package/src/tests/parsers.ts +182 -0
  76. package/src/tests/publish-roundtrip.ts +584 -0
  77. package/src/tests/publish-spike.ts +377 -0
  78. package/src/tests/qc-dashboard.ts +210 -0
  79. package/src/tests/smart-pathway-filter.ts +193 -0
  80. package/src/tests/spc-formula-lines-spike.ts +129 -0
  81. package/src/tests/spc.ts +640 -0
  82. package/src/tests/spectronaut-candidates-e2e.ts +140 -0
  83. package/src/tests/spectronaut-candidates-parser.ts +398 -0
  84. package/src/tests/spectronaut-parser.ts +668 -0
  85. package/src/tests/subcellular-location.ts +361 -0
  86. package/src/tests/uniprot-panel.ts +202 -0
  87. package/src/tests/volcano.ts +603 -0
  88. package/src/utils/column-detection.ts +28 -0
  89. package/src/utils/gene-label-resolver.ts +443 -0
  90. package/src/utils/organisms.ts +82 -0
  91. package/src/utils/proteomics-types.ts +30 -0
  92. package/src/viewers/enrichment-viewers.ts +274 -0
  93. package/src/viewers/group-mean-correlation.ts +218 -0
  94. package/src/viewers/heatmap.ts +168 -0
  95. package/src/viewers/pca-plot.ts +169 -0
  96. package/src/viewers/qc-computations.ts +266 -0
  97. package/src/viewers/qc-dashboard.ts +176 -0
  98. package/src/viewers/spc-dashboard.ts +755 -0
  99. package/src/viewers/volcano.ts +690 -0
  100. package/test-console-output-1.log +2073 -0
  101. package/test-record-1.mp4 +0 -0
  102. package/tools/derive-precursor-golden-sidecar.mjs +81 -0
  103. package/tools/generate-enrichment-fixture.sh +160 -0
  104. package/tools/generate-spectronaut-candidates-fixture.mjs +212 -0
  105. package/tools/generate-spectronaut-precursor-fixture.mjs +128 -0
  106. package/tools/spectronaut-aggregate.sh +46 -0
  107. package/tools/spectronaut-aggregate.sql +80 -0
  108. package/tsconfig.json +18 -71
  109. package/webpack.config.js +86 -45
  110. package/.eslintignore +0 -1
  111. package/.eslintrc.json +0 -56
  112. package/LICENSE +0 -674
  113. package/package.png +0 -0
  114. package/scripts/number_antibody.py +0 -190
  115. package/scripts/number_antibody_abnumber.py +0 -177
  116. package/scripts/number_antibody_anarci.py +0 -200
@@ -0,0 +1,2073 @@
1
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/packages/published/files/Proteomics/1.2.1.X-a8830000/VVpDZMsmCj0UQ3Qc7x0fNxM463O0TrQ8/1/dist/package-test.js
2
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/log/funcs?text=package.id%2520%253D%2520%25222fa51500-6fc0-11f1-b8b3-0b24b5a5a327%2522
3
+ CONSOLE LOG ENTRY: Running tests...
4
+ CONSOLE LOG ENTRY: [object Object]
5
+ CONSOLE LOG ENTRY: Package testing: Started {{Parsers}}
6
+ CONSOLE LOG ENTRY: Package testing: Started {{Parsers}} {{MaxQuant: filters contaminant rows}}
7
+ CONSOLE LOG ENTRY: Package testing: Finished {{Parsers}} {{MaxQuant: filters contaminant rows}} with {{success}} for 12 ms
8
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/help/datagrok/datagrok.md
9
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/log/tests/package?benchmark=false&ciCd=false
10
+ CONSOLE LOG ENTRY: Package testing: Started {{Parsers}} {{MaxQuant: filters reverse rows}}
11
+ CONSOLE LOG ENTRY: Package testing: Finished {{Parsers}} {{MaxQuant: filters reverse rows}} with {{success}} for 3 ms
12
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/font/Roboto-Italic.woff2
13
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/font/Roboto-LightItalic.woff2
14
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/log/tests/package?benchmark=false&ciCd=false
15
+ CONSOLE LOG ENTRY: Package testing: Started {{Parsers}} {{MaxQuant: filters only-by-site rows}}
16
+ CONSOLE LOG ENTRY: Package testing: Finished {{Parsers}} {{MaxQuant: filters only-by-site rows}} with {{success}} for 5 ms
17
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/log/tests/package?benchmark=false&ciCd=false
18
+ CONSOLE LOG ENTRY: Package testing: Started {{Parsers}} {{MaxQuant: filters CON__ prefix rows}}
19
+ CONSOLE LOG ENTRY: Package testing: Finished {{Parsers}} {{MaxQuant: filters CON__ prefix rows}} with {{success}} for 7 ms
20
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/log/tests/package?benchmark=false&ciCd=false
21
+ CONSOLE LOG ENTRY: Package testing: Started {{Parsers}} {{MaxQuant: filters REV__ prefix rows}}
22
+ CONSOLE LOG ENTRY: Package testing: Finished {{Parsers}} {{MaxQuant: filters REV__ prefix rows}} with {{success}} for 10 ms
23
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/log/tests/package?benchmark=false&ciCd=false
24
+ CONSOLE LOG ENTRY: Package testing: Started {{Parsers}} {{MaxQuant: detects LFQ intensity columns}}
25
+ CONSOLE LOG ENTRY: Package testing: Finished {{Parsers}} {{MaxQuant: detects LFQ intensity columns}} with {{success}} for 5 ms
26
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/log/tests/package?benchmark=false&ciCd=false
27
+ CONSOLE LOG ENTRY: Package testing: Started {{Parsers}} {{MaxQuant: log2 transforms intensity values correctly}}
28
+ CONSOLE LOG ENTRY: Package testing: Finished {{Parsers}} {{MaxQuant: log2 transforms intensity values correctly}} with {{success}} for 5 ms
29
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/log/tests/package?benchmark=false&ciCd=false
30
+ CONSOLE LOG ENTRY: Package testing: Started {{Parsers}} {{MaxQuant: zero intensity produces FLOAT_NULL in log2}}
31
+ CONSOLE LOG ENTRY: Package testing: Finished {{Parsers}} {{MaxQuant: zero intensity produces FLOAT_NULL in log2}} with {{success}} for 8 ms
32
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/log/tests/package?benchmark=false&ciCd=false
33
+ CONSOLE LOG ENTRY: Package testing: Started {{Parsers}} {{MaxQuant: assigns semantic types}}
34
+ CONSOLE LOG ENTRY: Package testing: Finished {{Parsers}} {{MaxQuant: assigns semantic types}} with {{success}} for 6 ms
35
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/log/tests/package?benchmark=false&ciCd=false
36
+ CONSOLE LOG ENTRY: Package testing: Started {{Parsers}} {{MaxQuant: parses primary protein ID from semicolon-delimited}}
37
+ CONSOLE LOG ENTRY: Package testing: Finished {{Parsers}} {{MaxQuant: parses primary protein ID from semicolon-delimited}} with {{success}} for 5 ms
38
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/log/tests/package?benchmark=false&ciCd=false
39
+ CONSOLE LOG ENTRY: Package testing: Started {{Parsers}} {{MaxQuant: no contaminant IDs remain after filtering}}
40
+ CONSOLE LOG ENTRY: Package testing: Finished {{Parsers}} {{MaxQuant: no contaminant IDs remain after filtering}} with {{success}} for 7 ms
41
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/log/tests/package?benchmark=false&ciCd=false
42
+ CONSOLE LOG ENTRY: Package testing: Started {{Parsers}} {{MaxQuant: assigns intensity semantic type to log2 columns}}
43
+ CONSOLE LOG ENTRY: Package testing: Finished {{Parsers}} {{MaxQuant: assigns intensity semantic type to log2 columns}} with {{success}} for 4 ms
44
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/log/tests/package?benchmark=false&ciCd=false
45
+ CONSOLE LOG ENTRY: Package testing: Started {{Parsers}} {{MaxQuant: handles MQ 2.x dot column names}}
46
+ CONSOLE LOG ENTRY: Package testing: Finished {{Parsers}} {{MaxQuant: handles MQ 2.x dot column names}} with {{success}} for 3 ms
47
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/log/tests/package?benchmark=false&ciCd=false
48
+ CONSOLE LOG ENTRY: Package testing: Started {{Parsers}} {{MaxQuant: parser tags proteomics.source}}
49
+ CONSOLE LOG ENTRY: Package testing: Finished {{Parsers}} {{MaxQuant: parser tags proteomics.source}} with {{success}} for 3 ms
50
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/log/tests/package?benchmark=false&ciCd=false
51
+ CONSOLE LOG ENTRY: Package testing: Started {{Parsers}} {{MaxQuant: iBAQ columns detected as intensity}}
52
+ CONSOLE LOG ENTRY: Package testing: Finished {{Parsers}} {{MaxQuant: iBAQ columns detected as intensity}} with {{success}} for 7 ms
53
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/log/tests/package?benchmark=false&ciCd=false
54
+ CONSOLE LOG ENTRY: Package testing: Started {{Experiment Setup}}
55
+ CONSOLE LOG ENTRY: Package testing: Started {{Experiment Setup}} {{setGroups persists group assignments as tag}}
56
+ CONSOLE LOG ENTRY: Package testing: Finished {{Experiment Setup}} {{setGroups persists group assignments as tag}} with {{success}} for 1 ms
57
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/log/tests/package?benchmark=false&ciCd=false
58
+ CONSOLE LOG ENTRY: Package testing: Started {{Experiment Setup}} {{getGroups returns null for untagged DataFrame}}
59
+ CONSOLE LOG ENTRY: Package testing: Finished {{Experiment Setup}} {{getGroups returns null for untagged DataFrame}} with {{success}} for 6 ms
60
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/log/tests/package?benchmark=false&ciCd=false
61
+ CONSOLE LOG ENTRY: Package testing: Started {{Experiment Setup}} {{getOrganism returns undefined until set, then round-trips the code}}
62
+ CONSOLE LOG ENTRY: Package testing: Finished {{Experiment Setup}} {{getOrganism returns undefined until set, then round-trips the code}} with {{success}} for 4 ms
63
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/log/tests/package?benchmark=false&ciCd=false
64
+ CONSOLE LOG ENTRY: Package testing: Started {{Experiment Setup}} {{applyAnnotation persists the organism alongside the groups}}
65
+ CONSOLE LOG ENTRY: Package testing: Finished {{Experiment Setup}} {{applyAnnotation persists the organism alongside the groups}} with {{success}} for 1 ms
66
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/log/tests/package?benchmark=false&ciCd=false
67
+ CONSOLE LOG ENTRY: Package testing: Started {{Experiment Setup}} {{getGroups round-trips GroupAssignment correctly}}
68
+ CONSOLE LOG ENTRY: Package testing: Finished {{Experiment Setup}} {{getGroups round-trips GroupAssignment correctly}} with {{success}} for 2 ms
69
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/log/tests/package?benchmark=false&ciCd=false
70
+ CONSOLE LOG ENTRY: Package testing: Started {{Experiment Setup}} {{seedAnnotationDialogInputs returns Control/Treatment defaults when no tag}}
71
+ CONSOLE LOG ENTRY: Package testing: Finished {{Experiment Setup}} {{seedAnnotationDialogInputs returns Control/Treatment defaults when no tag}} with {{success}} for 2 ms
72
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/log/tests/package?benchmark=false&ciCd=false
73
+ CONSOLE LOG ENTRY: Package testing: Started {{Experiment Setup}} {{seedAnnotationDialogInputs reads names + columns from existing groups}}
74
+ CONSOLE LOG ENTRY: Package testing: Finished {{Experiment Setup}} {{seedAnnotationDialogInputs reads names + columns from existing groups}} with {{success}} for 2 ms
75
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/log/tests/package?benchmark=false&ciCd=false
76
+ CONSOLE LOG ENTRY: Package testing: Started {{Experiment Setup}} {{seedAnnotationDialogInputs drops column refs not in the DataFrame}}
77
+ CONSOLE LOG ENTRY: Package testing: Finished {{Experiment Setup}} {{seedAnnotationDialogInputs drops column refs not in the DataFrame}} with {{success}} for 3 ms
78
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/log/tests/package?benchmark=false&ciCd=false
79
+ CONSOLE LOG ENTRY: Package testing: Started {{Experiment Setup}} {{seedAnnotationDialogInputs drops column refs not in available list}}
80
+ CONSOLE LOG ENTRY: Package testing: Finished {{Experiment Setup}} {{seedAnnotationDialogInputs drops column refs not in available list}} with {{success}} for 4 ms
81
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/log/tests/package?benchmark=false&ciCd=false
82
+ CONSOLE LOG ENTRY: Package testing: Started {{Experiment Setup}} {{seedAnnotationDialogInputs falls back to defaults when stored names are empty}}
83
+ CONSOLE LOG ENTRY: Package testing: Finished {{Experiment Setup}} {{seedAnnotationDialogInputs falls back to defaults when stored names are empty}} with {{success}} for 2 ms
84
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/log/tests/package?benchmark=false&ciCd=false
85
+ CONSOLE LOG ENTRY: Package testing: Started {{Normalization}}
86
+ CONSOLE LOG ENTRY: Package testing: Started {{Normalization}} {{median normalization shifts column medians to zero}}
87
+ CONSOLE LOG ENTRY: Package testing: Finished {{Normalization}} {{median normalization shifts column medians to zero}} with {{success}} for 2 ms
88
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/log/tests/package?benchmark=false&ciCd=false
89
+ CONSOLE LOG ENTRY: Package testing: Started {{Normalization}} {{median normalization skips null values}}
90
+ CONSOLE LOG ENTRY: Package testing: Finished {{Normalization}} {{median normalization skips null values}} with {{success}} for 1 ms
91
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/log/tests/package?benchmark=false&ciCd=false
92
+ CONSOLE LOG ENTRY: Package testing: Started {{Normalization}} {{normalization sets proteomics.normalized tag}}
93
+ CONSOLE LOG ENTRY: Package testing: Finished {{Normalization}} {{normalization sets proteomics.normalized tag}} with {{success}} for 2 ms
94
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/log/tests/package?benchmark=false&ciCd=false
95
+ CONSOLE LOG ENTRY: Package testing: Started {{Normalization}} {{quantile normalization aligns column distributions}}
96
+ CONSOLE LOG ENTRY: Package testing: Finished {{Normalization}} {{quantile normalization aligns column distributions}} with {{success}} for 5 ms
97
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/log/tests/package?benchmark=false&ciCd=false
98
+ CONSOLE LOG ENTRY: Package testing: Started {{Normalization}} {{quantile normalization preserves null values}}
99
+ CONSOLE LOG ENTRY: Package testing: Finished {{Normalization}} {{quantile normalization preserves null values}} with {{success}} for 2 ms
100
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/log/tests/package?benchmark=false&ciCd=false
101
+ CONSOLE LOG ENTRY: Package testing: Started {{Normalization}} {{quantile normalization sets proteomics.normalized tag}}
102
+ CONSOLE LOG ENTRY: Package testing: Finished {{Normalization}} {{quantile normalization sets proteomics.normalized tag}} with {{success}} for 2 ms
103
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/log/tests/package?benchmark=false&ciCd=false
104
+ CONSOLE LOG ENTRY: Package testing: Started {{Normalization}} {{quantile normalization with < 2 columns returns without error}}
105
+ CONSOLE LOG ENTRY: Package testing: Finished {{Normalization}} {{quantile normalization with < 2 columns returns without error}} with {{success}} for 1 ms
106
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/log/tests/package?benchmark=false&ciCd=false
107
+ CONSOLE LOG ENTRY: Package testing: Started {{Normalization}} {{vsnNormalize falls back to quantile on R failure}}
108
+ CONSOLE LOG ENTRY: VSN normalization failed, using quantile fallback: Message queue disabled
109
+ CONSOLE LOG ENTRY: Package testing: Finished {{Normalization}} {{vsnNormalize falls back to quantile on R failure}} with {{success}} for 95 ms
110
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/log/tests/package?benchmark=false&ciCd=false
111
+ CONSOLE LOG ENTRY: Package testing: Started {{Imputation}}
112
+ CONSOLE LOG ENTRY: Package testing: Started {{Imputation}} {{MinProb imputation fills all NaN values}}
113
+ CONSOLE LOG ENTRY: Package testing: Finished {{Imputation}} {{MinProb imputation fills all NaN values}} with {{success}} for 1 ms
114
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/log/tests/package?benchmark=false&ciCd=false
115
+ CONSOLE LOG ENTRY: Package testing: Started {{Imputation}} {{imputed values are below the observed mean}}
116
+ CONSOLE LOG ENTRY: Package testing: Finished {{Imputation}} {{imputed values are below the observed mean}} with {{success}} for 2 ms
117
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/log/tests/package?benchmark=false&ciCd=false
118
+ CONSOLE LOG ENTRY: Package testing: Started {{Imputation}} {{imputation sets proteomics.imputed tag}}
119
+ CONSOLE LOG ENTRY: Package testing: Finished {{Imputation}} {{imputation sets proteomics.imputed tag}} with {{success}} for 2 ms
120
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/log/tests/package?benchmark=false&ciCd=false
121
+ CONSOLE LOG ENTRY: Package testing: Started {{Imputation}} {{kNN imputation fills missing values using nearest neighbors}}
122
+ CONSOLE LOG ENTRY: Package testing: Finished {{Imputation}} {{kNN imputation fills missing values using nearest neighbors}} with {{success}} for 4 ms
123
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/log/tests/package?benchmark=false&ciCd=false
124
+ CONSOLE LOG ENTRY: Package testing: Started {{Imputation}} {{kNN imputation falls back to column mean when no neighbors have values}}
125
+ CONSOLE LOG ENTRY: Package testing: Finished {{Imputation}} {{kNN imputation falls back to column mean when no neighbors have values}} with {{success}} for 3 ms
126
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/log/tests/package?benchmark=false&ciCd=false
127
+ CONSOLE LOG ENTRY: Package testing: Started {{Imputation}} {{kNN imputation returns correct count and sets tag}}
128
+ CONSOLE LOG ENTRY: Package testing: Finished {{Imputation}} {{kNN imputation returns correct count and sets tag}} with {{success}} for 3 ms
129
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/log/tests/package?benchmark=false&ciCd=false
130
+ CONSOLE LOG ENTRY: Package testing: Started {{Imputation}} {{imputeZero replaces all nulls with 0}}
131
+ CONSOLE LOG ENTRY: Package testing: Finished {{Imputation}} {{imputeZero replaces all nulls with 0}} with {{success}} for 3 ms
132
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/log/tests/package?benchmark=false&ciCd=false
133
+ CONSOLE LOG ENTRY: Package testing: Started {{Imputation}} {{imputeMean replaces all nulls with column mean}}
134
+ CONSOLE LOG ENTRY: Package testing: Finished {{Imputation}} {{imputeMean replaces all nulls with column mean}} with {{success}} for 2 ms
135
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/log/tests/package?benchmark=false&ciCd=false
136
+ CONSOLE LOG ENTRY: Package testing: Started {{Imputation}} {{imputeMedian replaces all nulls with column median}}
137
+ CONSOLE LOG ENTRY: Package testing: Finished {{Imputation}} {{imputeMedian replaces all nulls with column median}} with {{success}} for 5 ms
138
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/log/tests/package?benchmark=false&ciCd=false
139
+ CONSOLE LOG ENTRY: Package testing: Started {{Differential Expression}}
140
+ CONSOLE LOG ENTRY: Package testing: Started {{Differential Expression}} {{DE produces correct log2FC sign for known groups}}
141
+ CONSOLE LOG ENTRY: Package testing: Finished {{Differential Expression}} {{DE produces correct log2FC sign for known groups}} with {{success}} for 3 ms
142
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/log/tests/package?benchmark=false&ciCd=false
143
+ CONSOLE LOG ENTRY: Package testing: Started {{Differential Expression}} {{DE produces valid p-values between 0 and 1}}
144
+ CONSOLE LOG ENTRY: Package testing: Finished {{Differential Expression}} {{DE produces valid p-values between 0 and 1}} with {{success}} for 4 ms
145
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/log/tests/package?benchmark=false&ciCd=false
146
+ CONSOLE LOG ENTRY: Package testing: Started {{Differential Expression}} {{proteins with <2 replicates get null p-values}}
147
+ CONSOLE LOG ENTRY: Package testing: Finished {{Differential Expression}} {{proteins with <2 replicates get null p-values}} with {{success}} for 2 ms
148
+ CONSOLE LOG ENTRY: Package testing: Started {{Differential Expression}} {{significant column marks proteins passing both thresholds}}
149
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/log/tests/package?benchmark=false&ciCd=false
150
+ CONSOLE LOG ENTRY: Package testing: Finished {{Differential Expression}} {{significant column marks proteins passing both thresholds}} with {{success}} for 3 ms
151
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/log/tests/package?benchmark=false&ciCd=false
152
+ CONSOLE LOG ENTRY: Package testing: Started {{Differential Expression}} {{DE sets proteomics.de_complete tag}}
153
+ CONSOLE LOG ENTRY: Package testing: Finished {{Differential Expression}} {{DE sets proteomics.de_complete tag}} with {{success}} for 5 ms
154
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/log/tests/package?benchmark=false&ciCd=false
155
+ CONSOLE LOG ENTRY: Package testing: Started {{Differential Expression}} {{D-09: DE dialog defaults to the declared (group1 = numerator) contrast}}
156
+ CONSOLE LOG ENTRY: Package testing: Finished {{Differential Expression}} {{D-09: DE dialog defaults to the declared (group1 = numerator) contrast}} with {{success}} for 4 ms
157
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/log/tests/package?benchmark=false&ciCd=false
158
+ CONSOLE LOG ENTRY: Package testing: Started {{Differential Expression}} {{D-09: contrast is direction-only — reversing flips sign, not |log2FC|}}
159
+ CONSOLE LOG ENTRY: Package testing: Finished {{Differential Expression}} {{D-09: contrast is direction-only — reversing flips sign, not |log2FC|}} with {{success}} for 4 ms
160
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/log/tests/package?benchmark=false&ciCd=false
161
+ CONSOLE LOG ENTRY: Package testing: Started {{Differential Expression}} {{DE assigns correct semantic types}}
162
+ CONSOLE LOG ENTRY: Package testing: Finished {{Differential Expression}} {{DE assigns correct semantic types}} with {{success}} for 6 ms
163
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/log/tests/package?benchmark=false&ciCd=false
164
+ CONSOLE LOG ENTRY: Package testing: Started {{DE result alignment}}
165
+ CONSOLE LOG ENTRY: Package testing: Started {{DE result alignment}} {{copyDEResultsToFrame realigns by row key, not position}}
166
+ CONSOLE LOG ENTRY: Package testing: Finished {{DE result alignment}} {{copyDEResultsToFrame realigns by row key, not position}} with {{success}} for 2 ms
167
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/log/tests/package?benchmark=false&ciCd=false
168
+ CONSOLE LOG ENTRY: Package testing: Started {{DE result alignment}} {{copyDEResultsToFrame falls back to positional without row key}}
169
+ CONSOLE LOG ENTRY: Package testing: Finished {{DE result alignment}} {{copyDEResultsToFrame falls back to positional without row key}} with {{success}} for 2 ms
170
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/log/tests/package?benchmark=false&ciCd=false
171
+ CONSOLE LOG ENTRY: Package testing: Started {{Generic Parser}}
172
+ CONSOLE LOG ENTRY: Package testing: Started {{Generic Parser}} {{Generic: parses CSV with comma delimiter}}
173
+ CONSOLE LOG ENTRY: Package testing: Finished {{Generic Parser}} {{Generic: parses CSV with comma delimiter}} with {{success}} for 0 ms
174
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/log/tests/package?benchmark=false&ciCd=false
175
+ CONSOLE LOG ENTRY: Package testing: Started {{Generic Parser}} {{Generic: parses TSV with tab delimiter}}
176
+ CONSOLE LOG ENTRY: Package testing: Finished {{Generic Parser}} {{Generic: parses TSV with tab delimiter}} with {{success}} for 18 ms
177
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/log/tests/package?benchmark=false&ciCd=false
178
+ CONSOLE LOG ENTRY: Package testing: Started {{Generic Parser}} {{Generic: auto-suggests protein ID column}}
179
+ CONSOLE LOG ENTRY: Package testing: Finished {{Generic Parser}} {{Generic: auto-suggests protein ID column}} with {{success}} for 3 ms
180
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/log/tests/package?benchmark=false&ciCd=false
181
+ CONSOLE LOG ENTRY: Package testing: Started {{Generic Parser}} {{Generic: auto-suggests intensity columns}}
182
+ CONSOLE LOG ENTRY: Package testing: Finished {{Generic Parser}} {{Generic: auto-suggests intensity columns}} with {{success}} for 5 ms
183
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/log/tests/package?benchmark=false&ciCd=false
184
+ CONSOLE LOG ENTRY: Package testing: Started {{Generic Parser}} {{Generic: detects raw intensities for log2 toggle}}
185
+ CONSOLE LOG ENTRY: Package testing: Finished {{Generic Parser}} {{Generic: detects raw intensities for log2 toggle}} with {{success}} for 1 ms
186
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/log/tests/package?benchmark=false&ciCd=false
187
+ CONSOLE LOG ENTRY: Package testing: Started {{Generic Parser}} {{Generic: detects already-log2 data}}
188
+ CONSOLE LOG ENTRY: Package testing: Finished {{Generic Parser}} {{Generic: detects already-log2 data}} with {{success}} for 3 ms
189
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/log/tests/package?benchmark=false&ciCd=false
190
+ CONSOLE LOG ENTRY: Package testing: Started {{Generic Parser}} {{Generic: log2TransformColumns produces correct values}}
191
+ CONSOLE LOG ENTRY: Package testing: Finished {{Generic Parser}} {{Generic: log2TransformColumns produces correct values}} with {{success}} for 4 ms
192
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/log/tests/package?benchmark=false&ciCd=false
193
+ CONSOLE LOG ENTRY: Package testing: Started {{Generic Parser}} {{Generic: copyAsLog2Columns copies values without transform}}
194
+ CONSOLE LOG ENTRY: Package testing: Finished {{Generic Parser}} {{Generic: copyAsLog2Columns copies values without transform}} with {{success}} for 4 ms
195
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/log/tests/package?benchmark=false&ciCd=false
196
+ CONSOLE LOG ENTRY: Package testing: Started {{Generic Parser}} {{Generic: addPrimaryColumnIfNeeded creates column for semicolons}}
197
+ CONSOLE LOG ENTRY: Package testing: Finished {{Generic Parser}} {{Generic: addPrimaryColumnIfNeeded creates column for semicolons}} with {{success}} for 1 ms
198
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/log/tests/package?benchmark=false&ciCd=false
199
+ CONSOLE LOG ENTRY: Package testing: Started {{Generic Parser}} {{Generic: addPrimaryColumnIfNeeded skips when no semicolons}}
200
+ CONSOLE LOG ENTRY: Package testing: Finished {{Generic Parser}} {{Generic: addPrimaryColumnIfNeeded skips when no semicolons}} with {{success}} for 1 ms
201
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/log/tests/package?benchmark=false&ciCd=false
202
+ CONSOLE LOG ENTRY: Package testing: Started {{Generic Parser}} {{Generic: assigns semantic types to selected columns}}
203
+ CONSOLE LOG ENTRY: Package testing: Finished {{Generic Parser}} {{Generic: assigns semantic types to selected columns}} with {{success}} for 2 ms
204
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/log/tests/package?benchmark=false&ciCd=false
205
+ CONSOLE LOG ENTRY: Package testing: Started {{QC Dashboard}}
206
+ CONSOLE LOG ENTRY: Package testing: Started {{QC Dashboard}} {{getIntensityColumns}}
207
+ CONSOLE LOG ENTRY: Package testing: Finished {{QC Dashboard}} {{getIntensityColumns}} with {{success}} for 0 ms
208
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/log/tests/package?benchmark=false&ciCd=false
209
+ CONSOLE LOG ENTRY: Package testing: Started {{QC Dashboard}} {{MA computation}}
210
+ CONSOLE LOG ENTRY: Package testing: Finished {{QC Dashboard}} {{MA computation}} with {{success}} for 5 ms
211
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/log/tests/package?benchmark=false&ciCd=false
212
+ CONSOLE LOG ENTRY: Package testing: Started {{QC Dashboard}} {{CV computation}}
213
+ CONSOLE LOG ENTRY: Package testing: Finished {{QC Dashboard}} {{CV computation}} with {{success}} for 2 ms
214
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/log/tests/package?benchmark=false&ciCd=false
215
+ CONSOLE LOG ENTRY: Package testing: Started {{QC Dashboard}} {{Loess/moving-average trend}}
216
+ CONSOLE LOG ENTRY: Package testing: Finished {{QC Dashboard}} {{Loess/moving-average trend}} with {{success}} for 6 ms
217
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/log/tests/package?benchmark=false&ciCd=false
218
+ CONSOLE LOG ENTRY: Package testing: Started {{QC Dashboard}} {{Missingness matrix}}
219
+ CONSOLE LOG ENTRY: Package testing: Finished {{QC Dashboard}} {{Missingness matrix}} with {{success}} for 4 ms
220
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/log/tests/package?benchmark=false&ciCd=false
221
+ CONSOLE LOG ENTRY: Package testing: Started {{QC Dashboard}} {{Unpivot intensities}}
222
+ CONSOLE LOG ENTRY: Package testing: Finished {{QC Dashboard}} {{Unpivot intensities}} with {{success}} for 10 ms
223
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/log/tests/package?benchmark=false&ciCd=false
224
+ CONSOLE LOG ENTRY: Package testing: Started {{QC Dashboard}} {{Missing bar data}}
225
+ CONSOLE LOG ENTRY: Package testing: Finished {{QC Dashboard}} {{Missing bar data}} with {{success}} for 4 ms
226
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/log/tests/package?benchmark=false&ciCd=false
227
+ CONSOLE LOG ENTRY: Package testing: Started {{Enrichment}}
228
+ CONSOLE LOG ENTRY: Package testing: Started {{Enrichment}} {{buildEnrichmentDf creates correct schema}}
229
+ CONSOLE LOG ENTRY: Package testing: Finished {{Enrichment}} {{buildEnrichmentDf creates correct schema}} with {{success}} for 2 ms
230
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/log/tests/package?benchmark=false&ciCd=false
231
+ CONSOLE LOG ENTRY: Package testing: Started {{Enrichment}} {{buildEnrichmentDf sets enrichment tag}}
232
+ CONSOLE LOG ENTRY: Package testing: Finished {{Enrichment}} {{buildEnrichmentDf sets enrichment tag}} with {{success}} for 3 ms
233
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/log/tests/package?benchmark=false&ciCd=false
234
+ CONSOLE LOG ENTRY: Package testing: Started {{Enrichment}} {{buildEnrichmentDf marks significant terms}}
235
+ CONSOLE LOG ENTRY: Package testing: Finished {{Enrichment}} {{buildEnrichmentDf marks significant terms}} with {{success}} for 2 ms
236
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/log/tests/package?benchmark=false&ciCd=false
237
+ CONSOLE LOG ENTRY: Package testing: Started {{Enrichment}} {{buildEnrichmentDf extracts intersection genes}}
238
+ CONSOLE LOG ENTRY: Package testing: Finished {{Enrichment}} {{buildEnrichmentDf extracts intersection genes}} with {{success}} for 4 ms
239
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/log/tests/package?benchmark=false&ciCd=false
240
+ CONSOLE LOG ENTRY: Package testing: Started {{Enrichment}} {{countSignificantProteins counts correctly}}
241
+ CONSOLE LOG ENTRY: Package testing: Finished {{Enrichment}} {{countSignificantProteins counts correctly}} with {{success}} for 2 ms
242
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/log/tests/package?benchmark=false&ciCd=false
243
+ CONSOLE LOG ENTRY: Package testing: Started {{Enrichment}} {{countSignificantProteins handles null values}}
244
+ CONSOLE LOG ENTRY: Package testing: Finished {{Enrichment}} {{countSignificantProteins handles null values}} with {{success}} for 3 ms
245
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/log/tests/package?benchmark=false&ciCd=false
246
+ CONSOLE LOG ENTRY: Package testing: Started {{Enrichment}} {{splitGenesByDirection splits significant genes by fc sign, shared background}}
247
+ CONSOLE LOG ENTRY: Package testing: Finished {{Enrichment}} {{splitGenesByDirection splits significant genes by fc sign, shared background}} with {{success}} for 2 ms
248
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/log/tests/package?benchmark=false&ciCd=false
249
+ CONSOLE LOG ENTRY: Package testing: Started {{Enrichment}} {{splitGenesByDirection skips null fc/p rows}}
250
+ CONSOLE LOG ENTRY: Package testing: Finished {{Enrichment}} {{splitGenesByDirection skips null fc/p rows}} with {{success}} for 2 ms
251
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/log/tests/package?benchmark=false&ciCd=false
252
+ CONSOLE LOG ENTRY: Package testing: Started {{Enrichment}} {{buildEnrichmentDf adds Direction column when label given}}
253
+ CONSOLE LOG ENTRY: Package testing: Finished {{Enrichment}} {{buildEnrichmentDf adds Direction column when label given}} with {{success}} for 6 ms
254
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/log/tests/package?benchmark=false&ciCd=false
255
+ CONSOLE LOG ENTRY: Package testing: Started {{Enrichment}} {{buildEnrichmentDf omits Direction column when no label}}
256
+ CONSOLE LOG ENTRY: Package testing: Finished {{Enrichment}} {{buildEnrichmentDf omits Direction column when no label}} with {{success}} for 2 ms
257
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/log/tests/package?benchmark=false&ciCd=false
258
+ CONSOLE LOG ENTRY: Package testing: Started {{Enrichment}} {{wireEnrichmentToVolcano selects matching proteins, source DF unmutated}}
259
+ CONSOLE LOG ENTRY: Package testing: Finished {{Enrichment}} {{wireEnrichmentToVolcano selects matching proteins, source DF unmutated}} with {{success}} for 3 ms
260
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/log/tests/package?benchmark=false&ciCd=false
261
+ CONSOLE LOG ENTRY: Package testing: Started {{Enrichment}} {{ORGANISM_LIST contains 9 entries with valid codes}}
262
+ CONSOLE LOG ENTRY: Package testing: Finished {{Enrichment}} {{ORGANISM_LIST contains 9 entries with valid codes}} with {{success}} for 1 ms
263
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/log/tests/package?benchmark=false&ciCd=false
264
+ CONSOLE LOG ENTRY: Package testing: Started {{Enrichment Export}}
265
+ CONSOLE LOG ENTRY: Package testing: Started {{Enrichment Export}} {{buildEnrichmentInputsCsv: up/down/background split matches thresholds}}
266
+ CONSOLE LOG ENTRY: Package testing: Finished {{Enrichment Export}} {{buildEnrichmentInputsCsv: up/down/background split matches thresholds}} with {{success}} for 1 ms
267
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/log/tests/package?benchmark=false&ciCd=false
268
+ CONSOLE LOG ENTRY: Package testing: Started {{Enrichment Export}} {{buildEnrichmentInputsCsv: looser thresholds pull more genes in}}
269
+ CONSOLE LOG ENTRY: Package testing: Finished {{Enrichment Export}} {{buildEnrichmentInputsCsv: looser thresholds pull more genes in}} with {{success}} for 6 ms
270
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/log/tests/package?benchmark=false&ciCd=false
271
+ CONSOLE LOG ENTRY: Package testing: Started {{Enrichment Export}} {{buildEnrichmentInputsCsv: quotes a gene containing a comma}}
272
+ CONSOLE LOG ENTRY: Package testing: Finished {{Enrichment Export}} {{buildEnrichmentInputsCsv: quotes a gene containing a comma}} with {{success}} for 1 ms
273
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/log/tests/package?benchmark=false&ciCd=false
274
+ CONSOLE LOG ENTRY: Package testing: Started {{Enrichment Export}} {{buildEnrichmentInputsCsv: throws without DE columns}}
275
+ CONSOLE LOG ENTRY: Package testing: Finished {{Enrichment Export}} {{buildEnrichmentInputsCsv: throws without DE columns}} with {{success}} for 1 ms
276
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/log/tests/package?benchmark=false&ciCd=false
277
+ CONSOLE LOG ENTRY: Package testing: Started {{Enrichment Visualization}}
278
+ CONSOLE LOG ENTRY: Package testing: Started {{Enrichment Visualization}} {{prepareEnrichmentChartColumns adds negLog10FDR on the same frame}}
279
+ CONSOLE LOG ENTRY: Package testing: Finished {{Enrichment Visualization}} {{prepareEnrichmentChartColumns adds negLog10FDR on the same frame}} with {{success}} for 2 ms
280
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/log/tests/package?benchmark=false&ciCd=false
281
+ CONSOLE LOG ENTRY: Package testing: Started {{Enrichment Visualization}} {{prepareEnrichmentChartColumns marks exactly topN terms (no Direction)}}
282
+ CONSOLE LOG ENTRY: Package testing: Finished {{Enrichment Visualization}} {{prepareEnrichmentChartColumns marks exactly topN terms (no Direction)}} with {{success}} for 2 ms
283
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/log/tests/package?benchmark=false&ciCd=false
284
+ CONSOLE LOG ENTRY: Package testing: Started {{Enrichment Visualization}} {{prepareEnrichmentChartColumns marks topN per direction}}
285
+ CONSOLE LOG ENTRY: Package testing: Finished {{Enrichment Visualization}} {{prepareEnrichmentChartColumns marks topN per direction}} with {{success}} for 3 ms
286
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/log/tests/package?benchmark=false&ciCd=false
287
+ CONSOLE LOG ENTRY: Package testing: Started {{Enrichment Visualization}} {{prepareEnrichmentChartColumns marks all when fewer rows than topN}}
288
+ CONSOLE LOG ENTRY: Package testing: Finished {{Enrichment Visualization}} {{prepareEnrichmentChartColumns marks all when fewer rows than topN}} with {{success}} for 2 ms
289
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/log/tests/package?benchmark=false&ciCd=false
290
+ CONSOLE LOG ENTRY: Package testing: Started {{Enrichment Visualization}} {{prepareEnrichmentChartColumns is idempotent on re-run}}
291
+ CONSOLE LOG ENTRY: Package testing: Finished {{Enrichment Visualization}} {{prepareEnrichmentChartColumns is idempotent on re-run}} with {{success}} for 3 ms
292
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/log/tests/package?benchmark=false&ciCd=false
293
+ CONSOLE LOG ENTRY: Package testing: Started {{Enrichment Visualization}} {{wireEnrichmentToVolcano returns EMPTY without gene column}}
294
+ CONSOLE LOG ENTRY: Package testing: Finished {{Enrichment Visualization}} {{wireEnrichmentToVolcano returns EMPTY without gene column}} with {{success}} for 4 ms
295
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/log/tests/package?benchmark=false&ciCd=false
296
+ CONSOLE LOG ENTRY: Package testing: Started {{Enrichment Visualization}} {{wireEnrichmentToVolcano selects matching genes on protein DataFrame}}
297
+ CONSOLE LOG ENTRY: Package testing: Finished {{Enrichment Visualization}} {{wireEnrichmentToVolcano selects matching genes on protein DataFrame}} with {{success}} for 5 ms
298
+ CONSOLE LOG ENTRY: Package testing: Started {{Enrichment Visualization}} {{wireEnrichmentToVolcano clears selection before new selection}}
299
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/log/tests/package?benchmark=false&ciCd=false
300
+ CONSOLE LOG ENTRY: Package testing: Finished {{Enrichment Visualization}} {{wireEnrichmentToVolcano clears selection before new selection}} with {{success}} for 7 ms
301
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/log/tests/package?benchmark=false&ciCd=false
302
+ CONSOLE LOG ENTRY: Package testing: Started {{Enrichment Visualization}} {{openEnrichmentVisualization docks dot/bar on enrichment view (directional)}}
303
+ CONSOLE LOG ENTRY: NullError: method not found: 'fy' on null
304
+ Translating stack trace... Look below, ID = 4e37B
305
+ CONSOLE LOG ENTRY: NullError: method not found: 'fy' on null
306
+ Translating stack trace... Look below, ID = 2L8tq
307
+ CONSOLE LOG ENTRY: Package testing: Finished {{Enrichment Visualization}} {{openEnrichmentVisualization docks dot/bar on enrichment view (directional)}} with {{success}} for 456 ms
308
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/images/ribbon/ribbon_sprite.svg
309
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/images/entities/view_layout.svg
310
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/images/viewers/viewers_sprite.png
311
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/help/visualize/viewers/scatter-plot.md
312
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/help/visualize/viewers/bar-chart.md
313
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/help/visualize/viewers/bar-chart.md
314
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/help/visualize/viewers/scatter-plot.md
315
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/log/tests/package?benchmark=false&ciCd=false
316
+ CONSOLE LOG ENTRY: Package testing: Started {{Enrichment Visualization}} {{openEnrichmentVisualization docks dot/bar on enrichment view (single-direction)}}
317
+ CONSOLE LOG ENTRY: NullError: method not found: 'fy' on null
318
+ Translating stack trace... Look below, ID = Zo0Xh
319
+ CONSOLE LOG ENTRY: Package testing: Finished {{Enrichment Visualization}} {{openEnrichmentVisualization docks dot/bar on enrichment view (single-direction)}} with {{success}} for 233 ms
320
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/help/visualize/viewers/scatter-plot.md
321
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/help/visualize/viewers/bar-chart.md
322
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/log/tests/package?benchmark=false&ciCd=false
323
+ CONSOLE LOG ENTRY: Package testing: Started {{Enrichment Visualization}} {{openEnrichmentVisualization switches focus to enrichment TableView}}
324
+ CONSOLE LOG ENTRY: NullError: method not found: 'fy' on null
325
+ Translating stack trace... Look below, ID = w8rbU
326
+ CONSOLE LOG ENTRY: NullError: method not found: 'fy' on null
327
+ Translating stack trace... Look below, ID = oOfOi
328
+ CONSOLE LOG ENTRY: Package testing: Finished {{Enrichment Visualization}} {{openEnrichmentVisualization switches focus to enrichment TableView}} with {{success}} for 383 ms
329
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/help/visualize/viewers/img/scatter-plot-colors-sizes-markers-labels-thumb.png
330
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/help/visualize/viewers/img/scatter-plot-zoom-and-pack-thumb.png
331
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/help/visualize/viewers/img/scatter-plot-selection-thumb.png
332
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/help/visualize/viewers/img/scatter-plot-regression-line.png
333
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/help/visualize/viewers/img/formula-lines-thumb.png
334
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/help/visualize/viewers/img/annotation-regions-thumb.png
335
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/help/visualize/viewers/img/formula-lines-annotation-regions-viewers.png
336
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/help/visualize/viewers/img/scatterplot-custom-tooltip-thumb.png
337
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/help/visualize/viewers/img/group-tooltip-thumb.png
338
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/help/visualize/viewers/img/scatter-plot-labels-thumb.png
339
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/help/visualize/viewers/img/scatter-plot-jitter-thumb.png
340
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/help/visualize/viewers/img/scatter-plot-lines.png
341
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/help/uploads/viewers/scatter-plot-molecules.png
342
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/help/visualize/viewers/img/webgpu-scatterplot-thumb.png
343
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/help/uploads/youtube/visualizations2.png
344
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/help/visualize/viewers/img/bar-chart-relative-values-thumb.png
345
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/help/visualize/viewers/img/bar-chart-dates-thumb.png
346
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/help/visualize/viewers/scatter-plot.md
347
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/help/visualize/viewers/bar-chart.md
348
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/help/visualize/viewers/scatter-plot.md
349
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/help/visualize/viewers/bar-chart.md
350
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/log/tests/package?benchmark=false&ciCd=false
351
+ CONSOLE LOG ENTRY: Package testing: Started {{Enrichment Visualization}} {{enrichmentBannerRendersWhenTagSet}}
352
+ CONSOLE LOG ENTRY: NullError: method not found: 'fy' on null
353
+ Translating stack trace... Look below, ID = 1xX3u
354
+ CONSOLE LOG ENTRY: Package testing: Finished {{Enrichment Visualization}} {{enrichmentBannerRendersWhenTagSet}} with {{success}} for 139 ms
355
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/help/visualize/viewers/bar-chart.md
356
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/log/tests/package?benchmark=false&ciCd=false
357
+ CONSOLE LOG ENTRY: Package testing: Started {{Enrichment Visualization}} {{enrichmentBannerAbsentWhenTagUnset}}
358
+ CONSOLE LOG ENTRY: NullError: method not found: 'fy' on null
359
+ Translating stack trace... Look below, ID = AiAfQ
360
+ CONSOLE LOG ENTRY: Package testing: Finished {{Enrichment Visualization}} {{enrichmentBannerAbsentWhenTagUnset}} with {{success}} for 135 ms
361
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/help/visualize/viewers/scatter-plot.md
362
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/log/tests/package?benchmark=false&ciCd=false
363
+ CONSOLE LOG ENTRY: Package testing: Started {{Spectronaut}}
364
+ CONSOLE LOG ENTRY: Package testing: Started {{Spectronaut}} {{pivot produces correct protein count}}
365
+ CONSOLE LOG ENTRY: Package testing: Finished {{Spectronaut}} {{pivot produces correct protein count}} with {{success}} for 4 ms
366
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/log/tests/package?benchmark=false&ciCd=false
367
+ CONSOLE LOG ENTRY: Package testing: Started {{Spectronaut}} {{pivot produces correct sample column names}}
368
+ CONSOLE LOG ENTRY: Package testing: Finished {{Spectronaut}} {{pivot produces correct sample column names}} with {{success}} for 3 ms
369
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/js/api/js-api.js.map?1783837812583
370
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/log/tests/package?benchmark=false&ciCd=false
371
+ CONSOLE LOG ENTRY: Package testing: Started {{Spectronaut}} {{CON__ and REV__ prefixed proteins are excluded}}
372
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/login.dart.js.map?1783837812583
373
+ CONSOLE LOG ENTRY: Package testing: Finished {{Spectronaut}} {{CON__ and REV__ prefixed proteins are excluded}} with {{success}} for 4 ms
374
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/login.dart.js_1.part.js.map?1783837812583
375
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/log/tests/package?benchmark=false&ciCd=false
376
+ CONSOLE LOG ENTRY: Package testing: Started {{Spectronaut}} {{rows with numeric EG.Qvalue > threshold are excluded}}
377
+ CONSOLE LOG ENTRY: Package testing: Finished {{Spectronaut}} {{rows with numeric EG.Qvalue > threshold are excluded}} with {{success}} for 4 ms
378
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/log/tests/package?benchmark=false&ciCd=false
379
+ CONSOLE LOG ENTRY: Package testing: Started {{Spectronaut}} {{non-numeric EG.Qvalue rows treated as passing}}
380
+ CONSOLE LOG ENTRY: Package testing: Finished {{Spectronaut}} {{non-numeric EG.Qvalue rows treated as passing}} with {{success}} for 32 ms
381
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/log/tests/package?benchmark=false&ciCd=false
382
+ CONSOLE LOG ENTRY: Package testing: Started {{Spectronaut}} {{PG.ProteinGroups has PROTEIN_ID semantic type}}
383
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/packages/published/files/Proteomics/1.2.1.X-a8830000/VVpDZMsmCj0UQ3Qc7x0fNxM463O0TrQ8/1/dist/package.js.map?
384
+ CONSOLE LOG ENTRY: Package testing: Finished {{Spectronaut}} {{PG.ProteinGroups has PROTEIN_ID semantic type}} with {{success}} for 11 ms
385
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/packages/published/files/Proteomics/1.2.1.X-a8830000/VVpDZMsmCj0UQ3Qc7x0fNxM463O0TrQ8/1/dist/package-test.js.map?
386
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/log/tests/package?benchmark=false&ciCd=false
387
+ CONSOLE LOG ENTRY: Package testing: Started {{Spectronaut}} {{intensity columns have INTENSITY semantic type}}
388
+ CONSOLE LOG ENTRY: Package testing: Finished {{Spectronaut}} {{intensity columns have INTENSITY semantic type}} with {{success}} for 5 ms
389
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/log/tests/package?benchmark=false&ciCd=false
390
+ CONSOLE LOG ENTRY: Package testing: Started {{Spectronaut}} {{R.FileName stored as spectronaut.fileName tag on intensity columns}}
391
+ CONSOLE LOG ENTRY: Package testing: Finished {{Spectronaut}} {{R.FileName stored as spectronaut.fileName tag on intensity columns}} with {{success}} for 6 ms
392
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/log/tests/package?benchmark=false&ciCd=false
393
+ CONSOLE LOG ENTRY: Package testing: Started {{Spectronaut}} {{groups auto-populated via setGroups when exactly 2 conditions}}
394
+ CONSOLE LOG ENTRY: Package testing: Finished {{Spectronaut}} {{groups auto-populated via setGroups when exactly 2 conditions}} with {{success}} for 6 ms
395
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/log/tests/package?benchmark=false&ciCd=false
396
+ CONSOLE LOG ENTRY: Package testing: Started {{Spectronaut}} {{groups not set when more than 2 conditions}}
397
+ CONSOLE LOG ENTRY: Package testing: Finished {{Spectronaut}} {{groups not set when more than 2 conditions}} with {{success}} for 5 ms
398
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/log/tests/package?benchmark=false&ciCd=false
399
+ CONSOLE LOG ENTRY: Package testing: Started {{Spectronaut}} {{pre-normalized tag set for raw (non-log2) intensity data}}
400
+ CONSOLE LOG ENTRY: Package testing: Finished {{Spectronaut}} {{pre-normalized tag set for raw (non-log2) intensity data}} with {{success}} for 3 ms
401
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/log/tests/package?benchmark=false&ciCd=false
402
+ CONSOLE LOG ENTRY: Package testing: Started {{Spectronaut}} {{pre-normalized tag set when detectLog2Status detects log2-range values}}
403
+ CONSOLE LOG ENTRY: Package testing: Finished {{Spectronaut}} {{pre-normalized tag set when detectLog2Status detects log2-range values}} with {{success}} for 6 ms
404
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/log/tests/package?benchmark=false&ciCd=false
405
+ CONSOLE LOG ENTRY: Package testing: Started {{Spectronaut}} {{both raw and log2 intensity columns present in output}}
406
+ CONSOLE LOG ENTRY: Package testing: Finished {{Spectronaut}} {{both raw and log2 intensity columns present in output}} with {{success}} for 4 ms
407
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/log/tests/package?benchmark=false&ciCd=false
408
+ CONSOLE LOG ENTRY: Package testing: Started {{Spectronaut}} {{proteomics.source tag set to spectronaut}}
409
+ CONSOLE LOG ENTRY: Package testing: Finished {{Spectronaut}} {{proteomics.source tag set to spectronaut}} with {{success}} for 4 ms
410
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/log/tests/package?benchmark=false&ciCd=false
411
+ CONSOLE LOG ENTRY: Package testing: Started {{Spectronaut}} {{PG.Quantity accepted as alternative to PG.IBAQ}}
412
+ CONSOLE LOG ENTRY: Package testing: Finished {{Spectronaut}} {{PG.Quantity accepted as alternative to PG.IBAQ}} with {{success}} for 5 ms
413
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/log/tests/package?benchmark=false&ciCd=false
414
+ CONSOLE LOG ENTRY: Package testing: Started {{Spectronaut}} {{throws when neither PG.IBAQ nor PG.Quantity is present}}
415
+ CONSOLE LOG ENTRY: Package testing: Finished {{Spectronaut}} {{throws when neither PG.IBAQ nor PG.Quantity is present}} with {{success}} for 3 ms
416
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/log/tests/package?benchmark=false&ciCd=false
417
+ CONSOLE LOG ENTRY: Package testing: Started {{Spectronaut}} {{demo file produces correct dimensions}}
418
+ CONSOLE LOG ENTRY: Package testing: Finished {{Spectronaut}} {{demo file produces correct dimensions}} with {{success}} for 202 ms
419
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/log/tests/package?benchmark=false&ciCd=false
420
+ CONSOLE LOG ENTRY: Package testing: Started {{Spectronaut}} {{streams precursor fixture}}
421
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/connectors/connections/System.AppData/file/Proteomics%2Fdemo%2Fspectronaut-hye-precursor.tsv?&&flag=3
422
+ CONSOLE LOG ENTRY: Package testing: Finished {{Spectronaut}} {{streams precursor fixture}} with {{success}} for 201 ms
423
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/log/tests/package?benchmark=false&ciCd=false
424
+ CONSOLE LOG ENTRY: Package testing: Started {{Spectronaut}} {{sniffIsPrecursor routes by header}}
425
+ CONSOLE LOG ENTRY: Package testing: Finished {{Spectronaut}} {{sniffIsPrecursor routes by header}} with {{success}} for 12 ms
426
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/log/tests/package?benchmark=false&ciCd=false
427
+ CONSOLE LOG ENTRY: Package testing: Started {{Spectronaut}} {{stream path matches text path}}
428
+ CONSOLE LOG ENTRY: Package testing: Finished {{Spectronaut}} {{stream path matches text path}} with {{success}} for 13 ms
429
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/log/tests/package?benchmark=false&ciCd=false
430
+ CONSOLE LOG ENTRY: Package testing: Started {{Spectronaut}} {{streaming filter parity}}
431
+ CONSOLE LOG ENTRY: Package testing: Finished {{Spectronaut}} {{streaming filter parity}} with {{success}} for 28 ms
432
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/log/tests/package?benchmark=false&ciCd=false
433
+ CONSOLE LOG ENTRY: Package testing: Started {{Spectronaut}} {{by-design-filtered rows are not counted malformed}}
434
+ CONSOLE LOG ENTRY: Package testing: Finished {{Spectronaut}} {{by-design-filtered rows are not counted malformed}} with {{success}} for 11 ms
435
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/log/tests/package?benchmark=false&ciCd=false
436
+ CONSOLE LOG ENTRY: Package testing: Started {{Spectronaut}} {{truncated line is counted malformed}}
437
+ CONSOLE LOG ENTRY: Package testing: Finished {{Spectronaut}} {{truncated line is counted malformed}} with {{success}} for 5 ms
438
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/log/tests/package?benchmark=false&ciCd=false
439
+ CONSOLE LOG ENTRY: Package testing: Started {{Spectronaut}} {{empty-protein rows are filtered silently (streaming↔text parity)}}
440
+ CONSOLE LOG ENTRY: Package testing: Finished {{Spectronaut}} {{empty-protein rows are filtered silently (streaming↔text parity)}} with {{success}} for 12 ms
441
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/log/tests/package?benchmark=false&ciCd=false
442
+ CONSOLE LOG ENTRY: Package testing: Started {{Spectronaut}} {{both-numeric-casts-null rows are filtered silently (streaming↔text parity)}}
443
+ CONSOLE LOG ENTRY: Package testing: Finished {{Spectronaut}} {{both-numeric-casts-null rows are filtered silently (streaming↔text parity)}} with {{success}} for 8 ms
444
+ CONSOLE LOG ENTRY: Stack trace 4e37B
445
+ packages/ddt/src/data_frame/data_frame.dart 231:36 DataFrame.temp
446
+ packages/d4/src/viewer_base/data_frame_viewer.dart 430:13 DataFrameViewer.createCombinedRowFilter.<anonymous function>
447
+ packages/$sdk/lib/async/zone.dart 1371:54 _RootZone.runUnary
448
+ packages/$sdk/lib/async/future_impl.dart 129:12 _FutureListener.handleValue
449
+ packages/$sdk/lib/async/future_impl.dart 665:13 _Future._propagateToListeners
450
+ packages/$sdk/lib/async/future_impl.dart 468:7 _Future._complete
451
+ packages/$sdk/lib/async/future_impl.dart 51:5 _SyncCompleter.complete
452
+ packages/$sdk/lib/_internal/js_runtime/lib/async_patch.dart 164:3 _asyncReturn
453
+ packages/ddt/src/functions/columns_functions.dart 608:13 getNewColumn
454
+ packages/$sdk/lib/_internal/js_runtime/lib/async_patch.dart 213:19 _wrapJsFunctionForAsync
455
+
456
+ CONSOLE LOG ENTRY: Stack trace 2L8tq
457
+ packages/ddt/src/data_frame/data_frame.dart 231:36 DataFrame.temp
458
+ packages/d4/src/viewer_base/data_frame_viewer.dart 430:13 DataFrameViewer.createCombinedRowFilter.<anonymous function>
459
+ packages/$sdk/lib/async/zone.dart 1371:54 _RootZone.runUnary
460
+ packages/$sdk/lib/async/future_impl.dart 129:12 _FutureListener.handleValue
461
+ packages/$sdk/lib/async/future_impl.dart 665:13 _Future._propagateToListeners
462
+ packages/$sdk/lib/async/future_impl.dart 468:7 _Future._complete
463
+ packages/$sdk/lib/async/future_impl.dart 51:5 _SyncCompleter.complete
464
+ packages/$sdk/lib/_internal/js_runtime/lib/async_patch.dart 164:3 _asyncReturn
465
+ packages/ddt/src/functions/columns_functions.dart 608:13 getNewColumn
466
+ packages/$sdk/lib/_internal/js_runtime/lib/async_patch.dart 213:19 _wrapJsFunctionForAsync
467
+
468
+ CONSOLE LOG ENTRY: Stack trace Zo0Xh
469
+ packages/ddt/src/data_frame/data_frame.dart 231:36 DataFrame.temp
470
+ packages/d4/src/viewer_base/data_frame_viewer.dart 430:13 DataFrameViewer.createCombinedRowFilter.<anonymous function>
471
+ packages/$sdk/lib/async/zone.dart 1371:54 _RootZone.runUnary
472
+ packages/$sdk/lib/async/future_impl.dart 129:12 _FutureListener.handleValue
473
+ packages/$sdk/lib/async/future_impl.dart 665:13 _Future._propagateToListeners
474
+ packages/$sdk/lib/async/future_impl.dart 468:7 _Future._complete
475
+ packages/$sdk/lib/async/future_impl.dart 51:5 _SyncCompleter.complete
476
+ packages/$sdk/lib/_internal/js_runtime/lib/async_patch.dart 164:3 _asyncReturn
477
+ packages/ddt/src/functions/columns_functions.dart 608:13 getNewColumn
478
+ packages/$sdk/lib/_internal/js_runtime/lib/async_patch.dart 213:19 _wrapJsFunctionForAsync
479
+
480
+ CONSOLE LOG ENTRY: Stack trace w8rbU
481
+ packages/ddt/src/data_frame/data_frame.dart 231:36 DataFrame.temp
482
+ packages/d4/src/viewer_base/data_frame_viewer.dart 430:13 DataFrameViewer.createCombinedRowFilter.<anonymous function>
483
+ packages/$sdk/lib/async/zone.dart 1371:54 _RootZone.runUnary
484
+ packages/$sdk/lib/async/future_impl.dart 129:12 _FutureListener.handleValue
485
+ packages/$sdk/lib/async/future_impl.dart 665:13 _Future._propagateToListeners
486
+ packages/$sdk/lib/async/future_impl.dart 468:7 _Future._complete
487
+ packages/$sdk/lib/async/future_impl.dart 51:5 _SyncCompleter.complete
488
+ packages/$sdk/lib/_internal/js_runtime/lib/async_patch.dart 164:3 _asyncReturn
489
+ packages/ddt/src/functions/columns_functions.dart 608:13 getNewColumn
490
+ packages/$sdk/lib/_internal/js_runtime/lib/async_patch.dart 213:19 _wrapJsFunctionForAsync
491
+
492
+ CONSOLE LOG ENTRY: Stack trace oOfOi
493
+ packages/ddt/src/data_frame/data_frame.dart 231:36 DataFrame.temp
494
+ packages/d4/src/viewer_base/data_frame_viewer.dart 430:13 DataFrameViewer.createCombinedRowFilter.<anonymous function>
495
+ packages/$sdk/lib/async/zone.dart 1371:54 _RootZone.runUnary
496
+ packages/$sdk/lib/async/future_impl.dart 129:12 _FutureListener.handleValue
497
+ packages/$sdk/lib/async/future_impl.dart 665:13 _Future._propagateToListeners
498
+ packages/$sdk/lib/async/future_impl.dart 468:7 _Future._complete
499
+ packages/$sdk/lib/async/future_impl.dart 51:5 _SyncCompleter.complete
500
+ packages/$sdk/lib/_internal/js_runtime/lib/async_patch.dart 164:3 _asyncReturn
501
+ packages/ddt/src/functions/columns_functions.dart 608:13 getNewColumn
502
+ packages/$sdk/lib/_internal/js_runtime/lib/async_patch.dart 213:19 _wrapJsFunctionForAsync
503
+
504
+ CONSOLE LOG ENTRY: Stack trace 1xX3u
505
+ packages/ddt/src/data_frame/data_frame.dart 231:36 DataFrame.temp
506
+ packages/d4/src/viewer_base/data_frame_viewer.dart 430:13 DataFrameViewer.createCombinedRowFilter.<anonymous function>
507
+ packages/$sdk/lib/async/zone.dart 1371:54 _RootZone.runUnary
508
+ packages/$sdk/lib/async/future_impl.dart 129:12 _FutureListener.handleValue
509
+ packages/$sdk/lib/async/future_impl.dart 665:13 _Future._propagateToListeners
510
+ packages/$sdk/lib/async/future_impl.dart 468:7 _Future._complete
511
+ packages/$sdk/lib/async/future_impl.dart 51:5 _SyncCompleter.complete
512
+ packages/$sdk/lib/_internal/js_runtime/lib/async_patch.dart 164:3 _asyncReturn
513
+ packages/ddt/src/functions/columns_functions.dart 608:13 getNewColumn
514
+ packages/$sdk/lib/_internal/js_runtime/lib/async_patch.dart 213:19 _wrapJsFunctionForAsync
515
+
516
+ CONSOLE LOG ENTRY: Stack trace AiAfQ
517
+ packages/ddt/src/data_frame/data_frame.dart 231:36 DataFrame.temp
518
+ packages/d4/src/viewer_base/data_frame_viewer.dart 430:13 DataFrameViewer.createCombinedRowFilter.<anonymous function>
519
+ packages/$sdk/lib/async/zone.dart 1371:54 _RootZone.runUnary
520
+ packages/$sdk/lib/async/future_impl.dart 129:12 _FutureListener.handleValue
521
+ packages/$sdk/lib/async/future_impl.dart 665:13 _Future._propagateToListeners
522
+ packages/$sdk/lib/async/future_impl.dart 468:7 _Future._complete
523
+ packages/$sdk/lib/async/future_impl.dart 51:5 _SyncCompleter.complete
524
+ packages/$sdk/lib/_internal/js_runtime/lib/async_patch.dart 164:3 _asyncReturn
525
+ packages/ddt/src/functions/columns_functions.dart 608:13 getNewColumn
526
+ packages/$sdk/lib/_internal/js_runtime/lib/async_patch.dart 213:19 _wrapJsFunctionForAsync
527
+
528
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/log/tests/package?benchmark=false&ciCd=false
529
+ CONSOLE LOG ENTRY: Package testing: Started {{Spectronaut}} {{streaming tag set and groups}}
530
+ CONSOLE LOG ENTRY: Package testing: Finished {{Spectronaut}} {{streaming tag set and groups}} with {{success}} for 19 ms
531
+ CONSOLE LOG ENTRY: Package testing: Started {{Spectronaut}} {{streaming output equals duckdb golden}}
532
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/log/tests/package?benchmark=false&ciCd=false
533
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/connectors/connections/System.AppData/file/Proteomics%2Fdemo%2Fspectronaut-hye-precursor-golden.json?&&flag=3
534
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/connectors/connections/System.AppData/file/Proteomics%2Fdemo%2Fspectronaut-hye-precursor.tsv?&&flag=3
535
+ CONSOLE LOG ENTRY: Package testing: Finished {{Spectronaut}} {{streaming output equals duckdb golden}} with {{success}} for 245 ms
536
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/log/tests/package?benchmark=false&ciCd=false
537
+ CONSOLE LOG ENTRY: Package testing: Started {{Spectronaut}} {{duckdb fallback tooling is committed}}
538
+ CONSOLE LOG ENTRY: Package testing: Finished {{Spectronaut}} {{duckdb fallback tooling is committed}} with {{success}} for 2 ms
539
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/log/tests/package?benchmark=false&ciCd=false
540
+ CONSOLE LOG ENTRY: Package testing: Started {{SpectronautCandidates}}
541
+ CONSOLE LOG ENTRY: Package testing: Started {{SpectronautCandidates}} {{parses standard rows}}
542
+ CONSOLE LOG ENTRY: Package testing: Finished {{SpectronautCandidates}} {{parses standard rows}} with {{success}} for 5 ms
543
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/log/tests/package?benchmark=false&ciCd=false
544
+ CONSOLE LOG ENTRY: Package testing: Started {{SpectronautCandidates}} {{sets proteomics.source to spectronaut-candidates}}
545
+ CONSOLE LOG ENTRY: Package testing: Finished {{SpectronautCandidates}} {{sets proteomics.source to spectronaut-candidates}} with {{success}} for 2 ms
546
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/log/tests/package?benchmark=false&ciCd=false
547
+ CONSOLE LOG ENTRY: Package testing: Started {{SpectronautCandidates}} {{sets de_complete and de_method tags}}
548
+ CONSOLE LOG ENTRY: Package testing: Finished {{SpectronautCandidates}} {{sets de_complete and de_method tags}} with {{success}} for 3 ms
549
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/log/tests/package?benchmark=false&ciCd=false
550
+ CONSOLE LOG ENTRY: Package testing: Started {{SpectronautCandidates}} {{names contrast groups from the Comparison string (volcano legend)}}
551
+ CONSOLE LOG ENTRY: Package testing: Finished {{SpectronautCandidates}} {{names contrast groups from the Comparison string (volcano legend)}} with {{success}} for 1 ms
552
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/log/tests/package?benchmark=false&ciCd=false
553
+ CONSOLE LOG ENTRY: Package testing: Started {{SpectronautCandidates}} {{renames AVG Log2 Ratio to log2FC}}
554
+ CONSOLE LOG ENTRY: Package testing: Finished {{SpectronautCandidates}} {{renames AVG Log2 Ratio to log2FC}} with {{success}} for 2 ms
555
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/log/tests/package?benchmark=false&ciCd=false
556
+ CONSOLE LOG ENTRY: Package testing: Started {{SpectronautCandidates}} {{renames Qvalue to adj.p-value}}
557
+ CONSOLE LOG ENTRY: Package testing: Finished {{SpectronautCandidates}} {{renames Qvalue to adj.p-value}} with {{success}} for 3 ms
558
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/log/tests/package?benchmark=false&ciCd=false
559
+ CONSOLE LOG ENTRY: Package testing: Started {{SpectronautCandidates}} {{renames Pvalue to p-value when present}}
560
+ CONSOLE LOG ENTRY: Package testing: Finished {{SpectronautCandidates}} {{renames Pvalue to p-value when present}} with {{success}} for 3 ms
561
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/log/tests/package?benchmark=false&ciCd=false
562
+ CONSOLE LOG ENTRY: Package testing: Started {{SpectronautCandidates}} {{works without a Pvalue column}}
563
+ CONSOLE LOG ENTRY: Package testing: Finished {{SpectronautCandidates}} {{works without a Pvalue column}} with {{success}} for 2 ms
564
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/log/tests/package?benchmark=false&ciCd=false
565
+ CONSOLE LOG ENTRY: Package testing: Started {{SpectronautCandidates}} {{assigns canonical semantic types}}
566
+ CONSOLE LOG ENTRY: Package testing: Finished {{SpectronautCandidates}} {{assigns canonical semantic types}} with {{success}} for 2 ms
567
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/log/tests/package?benchmark=false&ciCd=false
568
+ CONSOLE LOG ENTRY: Package testing: Started {{SpectronautCandidates}} {{computes significant column from |log2FC| >= 1 and adj.p <= 0.05}}
569
+ CONSOLE LOG ENTRY: Package testing: Finished {{SpectronautCandidates}} {{computes significant column from |log2FC| >= 1 and adj.p <= 0.05}} with {{success}} for 3 ms
570
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/log/tests/package?benchmark=false&ciCd=false
571
+ CONSOLE LOG ENTRY: Package testing: Started {{SpectronautCandidates}} {{filters contam_ rows}}
572
+ CONSOLE LOG ENTRY: Package testing: Finished {{SpectronautCandidates}} {{filters contam_ rows}} with {{success}} for 10 ms
573
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/log/tests/package?benchmark=false&ciCd=false
574
+ CONSOLE LOG ENTRY: Package testing: Started {{SpectronautCandidates}} {{filters rev_ decoy rows}}
575
+ CONSOLE LOG ENTRY: Package testing: Finished {{SpectronautCandidates}} {{filters rev_ decoy rows}} with {{success}} for 11 ms
576
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/log/tests/package?benchmark=false&ciCd=false
577
+ CONSOLE LOG ENTRY: Package testing: Started {{SpectronautCandidates}} {{throws on missing protein-group column}}
578
+ CONSOLE LOG ENTRY: Package testing: Finished {{SpectronautCandidates}} {{throws on missing protein-group column}} with {{success}} for 5 ms
579
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/log/tests/package?benchmark=false&ciCd=false
580
+ CONSOLE LOG ENTRY: Package testing: Started {{SpectronautCandidates}} {{throws on missing log2 ratio column}}
581
+ CONSOLE LOG ENTRY: Package testing: Finished {{SpectronautCandidates}} {{throws on missing log2 ratio column}} with {{success}} for 7 ms
582
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/log/tests/package?benchmark=false&ciCd=false
583
+ CONSOLE LOG ENTRY: Package testing: Started {{SpectronautCandidates}} {{throws on missing q-value column}}
584
+ CONSOLE LOG ENTRY: Package testing: Finished {{SpectronautCandidates}} {{throws on missing q-value column}} with {{success}} for 1 ms
585
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/log/tests/package?benchmark=false&ciCd=false
586
+ CONSOLE LOG ENTRY: Package testing: Started {{SpectronautCandidates}} {{accepts alternative column names (ProteinGroups, Log2 Ratio, Q-Value)}}
587
+ CONSOLE LOG ENTRY: Package testing: Finished {{SpectronautCandidates}} {{accepts alternative column names (ProteinGroups, Log2 Ratio, Q-Value)}} with {{success}} for 6 ms
588
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/log/tests/package?benchmark=false&ciCd=false
589
+ CONSOLE LOG ENTRY: Package testing: Started {{SpectronautCandidates}} {{keeps Comparison column for multi-comparison files}}
590
+ CONSOLE LOG ENTRY: Package testing: Finished {{SpectronautCandidates}} {{keeps Comparison column for multi-comparison files}} with {{success}} for 3 ms
591
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/log/tests/package?benchmark=false&ciCd=false
592
+ CONSOLE LOG ENTRY: Package testing: Started {{SpectronautCandidates}} {{flips reversed-comparison rows; canonical rows untouched}}
593
+ CONSOLE LOG ENTRY: Package testing: Finished {{SpectronautCandidates}} {{flips reversed-comparison rows; canonical rows untouched}} with {{success}} for 6 ms
594
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/log/tests/package?benchmark=false&ciCd=false
595
+ CONSOLE LOG ENTRY: Package testing: Started {{SpectronautCandidates}} {{flips log2FC without AVG Group Quantity columns (no swap, no throw)}}
596
+ CONSOLE LOG ENTRY: Package testing: Finished {{SpectronautCandidates}} {{flips log2FC without AVG Group Quantity columns (no swap, no throw)}} with {{success}} for 2 ms
597
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/log/tests/package?benchmark=false&ciCd=false
598
+ CONSOLE LOG ENTRY: Package testing: Started {{SpectronautCandidates}} {{single-orientation file is not mirrored}}
599
+ CONSOLE LOG ENTRY: Package testing: Finished {{SpectronautCandidates}} {{single-orientation file is not mirrored}} with {{success}} for 5 ms
600
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/log/tests/package?benchmark=false&ciCd=false
601
+ CONSOLE LOG ENTRY: Package testing: Started {{SpectronautCandidates}} {{parses CSV when delimiter is comma}}
602
+ CONSOLE LOG ENTRY: Package testing: Finished {{SpectronautCandidates}} {{parses CSV when delimiter is comma}} with {{success}} for 2 ms
603
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/log/tests/package?benchmark=false&ciCd=false
604
+ CONSOLE LOG ENTRY: Package testing: Started {{SpectronautCandidates}} {{creates Primary Protein ID for semicolon-delimited IDs}}
605
+ CONSOLE LOG ENTRY: Package testing: Finished {{SpectronautCandidates}} {{creates Primary Protein ID for semicolon-delimited IDs}} with {{success}} for 2 ms
606
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/log/tests/package?benchmark=false&ciCd=false
607
+ CONSOLE LOG ENTRY: Package testing: Started {{Proteomics: 14-03}}
608
+ CONSOLE LOG ENTRY: Package testing: Started {{Proteomics: 14-03}} {{filtersScopingNoFlags}}
609
+ CONSOLE LOG ENTRY: Package testing: Finished {{Proteomics: 14-03}} {{filtersScopingNoFlags}} with {{success}} for 152 ms
610
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/help/visualize/viewers/filters.md
611
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/log/tests/package?benchmark=false&ciCd=false
612
+ CONSOLE LOG ENTRY: Package testing: Started {{Proteomics: 14-03}} {{filtersScopingSingleContrast}}
613
+ CONSOLE LOG ENTRY: Package testing: Finished {{Proteomics: 14-03}} {{filtersScopingSingleContrast}} with {{success}} for 100 ms
614
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/help/uploads/gifs/filter-thumb.png
615
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/log/tests/package?benchmark=false&ciCd=false
616
+ CONSOLE LOG ENTRY: Package testing: Started {{Proteomics: 14-03}} {{filtersScopingFallbackToProteinIdWhenNoDisplayName}}
617
+ CONSOLE LOG ENTRY: Package testing: Finished {{Proteomics: 14-03}} {{filtersScopingFallbackToProteinIdWhenNoDisplayName}} with {{success}} for 147 ms
618
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/help/uploads/gifs/filter-checkbox-thumb.png
619
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/help/visualize/viewers/img/filter-radio-mode-thumb.png
620
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/help/visualize/viewers/img/switch-filter-type-thumb.png
621
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/help/visualize/viewers/img/chem-structure-filter-thumb.png
622
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/help/visualize/viewers/img/chem-scaffold-tree-filter-thumb.png
623
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/help/visualize/viewers/img/fasta-filtering-thumb.png
624
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/help/uploads/gifs/hierarchical-filter-thumb.png
625
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/help/visualize/viewers/img/helm-filtering-thumb.png
626
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/help/visualize/viewers/img/separator-filtering-thumb.png
627
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/help/uploads/gifs/free-text-filter-thumb.png
628
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/help/uploads/gifs/expression-filter-thumb.png
629
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/help/uploads/gifs/text-filter-thumb.png
630
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/help/uploads/gifs/bool-combined-thumb.png
631
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/help/visualize/viewers/img/multi-value-filter-thumb.png
632
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/help/visualize/viewers/img/filters-multi-values-thumb.png
633
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/help/visualize/viewers/img/filters-drag-column-thumb.png
634
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/log/tests/package?benchmark=false&ciCd=false
635
+ CONSOLE LOG ENTRY: Package testing: Started {{SpectronautCandidates E2E}}
636
+ CONSOLE LOG ENTRY: Package testing: Started {{SpectronautCandidates E2E}} {{parses HYE candidates fixture and reproduces expected DE signal}}
637
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/connectors/connections/System.AppData/file/Proteomics%2Fdemo%2Fspectronaut-hye-candidates.tsv?&&flag=3
638
+ CONSOLE LOG ENTRY: Package testing: Finished {{SpectronautCandidates E2E}} {{parses HYE candidates fixture and reproduces expected DE signal}} with {{success}} for 65 ms
639
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/log/tests/package?benchmark=false&ciCd=false
640
+ CONSOLE LOG ENTRY: Package testing: Started {{SpectronautCandidates E2E}} {{multi-comparison file docks a Comparison Filters viewer}}
641
+ CONSOLE LOG ENTRY: Package testing: Finished {{SpectronautCandidates E2E}} {{multi-comparison file docks a Comparison Filters viewer}} with {{success}} for 170 ms
642
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/log/tests/package?benchmark=false&ciCd=false
643
+ CONSOLE LOG ENTRY: Package testing: Started {{SpectronautCandidates E2E}} {{single-comparison file docks no Filters viewer}}
644
+ CONSOLE LOG ENTRY: Package testing: Finished {{SpectronautCandidates E2E}} {{single-comparison file docks no Filters viewer}} with {{success}} for 151 ms
645
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/log/tests/package?benchmark=false&ciCd=false
646
+ CONSOLE LOG ENTRY: Package testing: Started {{SpectronautCandidates E2E}} {{candidates import auto-opens the volcano}}
647
+ CONSOLE LOG ENTRY: Package testing: Finished {{SpectronautCandidates E2E}} {{candidates import auto-opens the volcano}} with {{success}} for 201 ms
648
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/help/visualize/viewers/scatter-plot.md
649
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/log/tests/package?benchmark=false&ciCd=false
650
+ CONSOLE LOG ENTRY: Package testing: Started {{FragPipe}}
651
+ CONSOLE LOG ENTRY: Package testing: Started {{FragPipe}} {{parses standard rows}}
652
+ CONSOLE LOG ENTRY: Package testing: Finished {{FragPipe}} {{parses standard rows}} with {{success}} for 4 ms
653
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/log/tests/package?benchmark=false&ciCd=false
654
+ CONSOLE LOG ENTRY: Package testing: Started {{FragPipe}} {{filters contam_ rows}}
655
+ CONSOLE LOG ENTRY: Package testing: Finished {{FragPipe}} {{filters contam_ rows}} with {{success}} for 3 ms
656
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/log/tests/package?benchmark=false&ciCd=false
657
+ CONSOLE LOG ENTRY: Package testing: Started {{FragPipe}} {{filters rev_ rows}}
658
+ CONSOLE LOG ENTRY: Package testing: Finished {{FragPipe}} {{filters rev_ rows}} with {{success}} for 4 ms
659
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/log/tests/package?benchmark=false&ciCd=false
660
+ CONSOLE LOG ENTRY: Package testing: Started {{FragPipe}} {{filters CON__/REV__ rows for MaxQuant-style FASTAs}}
661
+ CONSOLE LOG ENTRY: Package testing: Finished {{FragPipe}} {{filters CON__/REV__ rows for MaxQuant-style FASTAs}} with {{success}} for 3 ms
662
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/log/tests/package?benchmark=false&ciCd=false
663
+ CONSOLE LOG ENTRY: Package testing: Started {{FragPipe}} {{assigns semantic types}}
664
+ CONSOLE LOG ENTRY: Package testing: Finished {{FragPipe}} {{assigns semantic types}} with {{success}} for 4 ms
665
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/log/tests/package?benchmark=false&ciCd=false
666
+ CONSOLE LOG ENTRY: Package testing: Started {{FragPipe}} {{prefers MaxLFQ for log2 transform}}
667
+ CONSOLE LOG ENTRY: Package testing: Finished {{FragPipe}} {{prefers MaxLFQ for log2 transform}} with {{success}} for 11 ms
668
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/log/tests/package?benchmark=false&ciCd=false
669
+ CONSOLE LOG ENTRY: Package testing: Started {{FragPipe}} {{falls back to bare Intensity when no MaxLFQ present}}
670
+ CONSOLE LOG ENTRY: Package testing: Finished {{FragPipe}} {{falls back to bare Intensity when no MaxLFQ present}} with {{success}} for 5 ms
671
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/log/tests/package?benchmark=false&ciCd=false
672
+ CONSOLE LOG ENTRY: Package testing: Started {{FragPipe}} {{zero intensity produces FLOAT_NULL in log2}}
673
+ CONSOLE LOG ENTRY: Package testing: Finished {{FragPipe}} {{zero intensity produces FLOAT_NULL in log2}} with {{success}} for 5 ms
674
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/log/tests/package?benchmark=false&ciCd=false
675
+ CONSOLE LOG ENTRY: Package testing: Started {{FragPipe}} {{primary protein ID extracted from semicolon-delimited}}
676
+ CONSOLE LOG ENTRY: Package testing: Finished {{FragPipe}} {{primary protein ID extracted from semicolon-delimited}} with {{success}} for 10 ms
677
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/log/tests/package?benchmark=false&ciCd=false
678
+ CONSOLE LOG ENTRY: Package testing: Started {{FragPipe}} {{proteomics.source tag set to fragpipe}}
679
+ CONSOLE LOG ENTRY: Package testing: Finished {{FragPipe}} {{proteomics.source tag set to fragpipe}} with {{success}} for 4 ms
680
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/log/tests/package?benchmark=false&ciCd=false
681
+ CONSOLE LOG ENTRY: Package testing: Started {{FragPipe}} {{intensity columns survive as raw plus log2 pair}}
682
+ CONSOLE LOG ENTRY: Package testing: Finished {{FragPipe}} {{intensity columns survive as raw plus log2 pair}} with {{success}} for 6 ms
683
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/log/tests/package?benchmark=false&ciCd=false
684
+ CONSOLE LOG ENTRY: Package testing: Started {{FragPipe E2E}}
685
+ CONSOLE LOG ENTRY: Package testing: Started {{FragPipe E2E}} {{full pipeline (parse → normalize → impute → DE) on fragpipe-smoke-test.tsv}}
686
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/connectors/connections/System.AppData/file/Proteomics%2Fdemo%2Ffragpipe-smoke-test.tsv?&&flag=3
687
+ CONSOLE LOG ENTRY: Package testing: Finished {{FragPipe E2E}} {{full pipeline (parse → normalize → impute → DE) on fragpipe-smoke-test.tsv}} with {{success}} for 39 ms
688
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/log/tests/package?benchmark=false&ciCd=false
689
+ CONSOLE LOG ENTRY: Package testing: Started {{SubcellularLocation}}
690
+ CONSOLE LOG ENTRY: Package testing: Started {{SubcellularLocation}} {{SEMTYPE.SUBCELLULAR_LOCATION literal is stable}}
691
+ CONSOLE LOG ENTRY: Package testing: Finished {{SubcellularLocation}} {{SEMTYPE.SUBCELLULAR_LOCATION literal is stable}} with {{success}} for 0 ms
692
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/log/tests/package?benchmark=false&ciCd=false
693
+ CONSOLE LOG ENTRY: Package testing: Started {{SubcellularLocation}} {{every ORGANISM_LIST code has an ORGANISM_TAXONOMY mapping}}
694
+ CONSOLE LOG ENTRY: Package testing: Finished {{SubcellularLocation}} {{every ORGANISM_LIST code has an ORGANISM_TAXONOMY mapping}} with {{success}} for 2 ms
695
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/log/tests/package?benchmark=false&ciCd=false
696
+ CONSOLE LOG ENTRY: Package testing: Started {{SubcellularLocation}} {{classifier: subcellular field used before GO fallback}}
697
+ CONSOLE LOG ENTRY: Package testing: Finished {{SubcellularLocation}} {{classifier: subcellular field used before GO fallback}} with {{success}} for 5 ms
698
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/log/tests/package?benchmark=false&ciCd=false
699
+ CONSOLE LOG ENTRY: Package testing: Started {{SubcellularLocation}} {{classifier: GO used only when subcellular field has no match}}
700
+ CONSOLE LOG ENTRY: Package testing: Finished {{SubcellularLocation}} {{classifier: GO used only when subcellular field has no match}} with {{success}} for 2 ms
701
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/log/tests/package?benchmark=false&ciCd=false
702
+ CONSOLE LOG ENTRY: Package testing: Started {{SubcellularLocation}} {{classifier: earliest character position wins across categories}}
703
+ CONSOLE LOG ENTRY: Package testing: Finished {{SubcellularLocation}} {{classifier: earliest character position wins across categories}} with {{success}} for 2 ms
704
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/log/tests/package?benchmark=false&ciCd=false
705
+ CONSOLE LOG ENTRY: Package testing: Started {{SubcellularLocation}} {{classifier: ties broken by keyword-map insertion order (Nucleus before Cytoplasm)}}
706
+ CONSOLE LOG ENTRY: Package testing: Finished {{SubcellularLocation}} {{classifier: ties broken by keyword-map insertion order (Nucleus before Cytoplasm)}} with {{success}} for 8 ms
707
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/log/tests/package?benchmark=false&ciCd=false
708
+ CONSOLE LOG ENTRY: Package testing: Started {{SubcellularLocation}} {{classifier: raw string not pre-stripped (matches inside SUBCELLULAR LOCATION: ... {ECO})}}
709
+ CONSOLE LOG ENTRY: Package testing: Finished {{SubcellularLocation}} {{classifier: raw string not pre-stripped (matches inside SUBCELLULAR LOCATION: ... {ECO})}} with {{success}} for 1 ms
710
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/log/tests/package?benchmark=false&ciCd=false
711
+ CONSOLE LOG ENTRY: Package testing: Started {{SubcellularLocation}} {{classifier: empty / no-match → Unknown}}
712
+ CONSOLE LOG ENTRY: Package testing: Finished {{SubcellularLocation}} {{classifier: empty / no-match → Unknown}} with {{success}} for 1 ms
713
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/log/tests/package?benchmark=false&ciCd=false
714
+ CONSOLE LOG ENTRY: Package testing: Started {{SubcellularLocation}} {{LOCATION_COLORS: all 12 ARGB ints equal the locked hex conversion}}
715
+ CONSOLE LOG ENTRY: Package testing: Finished {{SubcellularLocation}} {{LOCATION_COLORS: all 12 ARGB ints equal the locked hex conversion}} with {{success}} for 6 ms
716
+ CONSOLE LOG ENTRY: Package testing: Started {{SubcellularLocation}} {{mergeStreamTsv: header skipped, positional parse, reviewed beats unreviewed}}
717
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/log/tests/package?benchmark=false&ciCd=false
718
+ CONSOLE LOG ENTRY: Package testing: Finished {{SubcellularLocation}} {{mergeStreamTsv: header skipped, positional parse, reviewed beats unreviewed}} with {{success}} for 4 ms
719
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/log/tests/package?benchmark=false&ciCd=false
720
+ CONSOLE LOG ENTRY: Package testing: Started {{SubcellularLocation}} {{mergeStreamTsv: existing Unknown is overwritten by a later non-Unknown}}
721
+ CONSOLE LOG ENTRY: Package testing: Finished {{SubcellularLocation}} {{mergeStreamTsv: existing Unknown is overwritten by a later non-Unknown}} with {{success}} for 1 ms
722
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/log/tests/package?benchmark=false&ciCd=false
723
+ CONSOLE LOG ENTRY: Package testing: Started {{SubcellularLocation}} {{runWithConcurrency caps in-flight tasks at the supplied limit}}
724
+ CONSOLE LOG ENTRY: Package testing: Finished {{SubcellularLocation}} {{runWithConcurrency caps in-flight tasks at the supplied limit}} with {{success}} for 36 ms
725
+ CONSOLE LOG ENTRY: Package testing: Started {{SubcellularLocation}} {{getSubcellularLocations emits non-decreasing progress per phase}}
726
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/log/tests/package?benchmark=false&ciCd=false
727
+ CONSOLE LOG ENTRY: Package testing: Finished {{SubcellularLocation}} {{getSubcellularLocations emits non-decreasing progress per phase}} with {{success}} for 4 ms
728
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/log/tests/package?benchmark=false&ciCd=false
729
+ CONSOLE LOG ENTRY: Package testing: Started {{SubcellularLocation}} {{getSubcellularLocations writes the cache incrementally during fetch}}
730
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/help/datagrok/datagrok.md
731
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/packages?
732
+ CONSOLE LOG ENTRY: Package testing: Finished {{SubcellularLocation}} {{getSubcellularLocations writes the cache incrementally during fetch}} with {{success}} for 6002 ms
733
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/log/tests/package?benchmark=false&ciCd=false
734
+ CONSOLE LOG ENTRY: Package testing: Started {{SubcellularLocation}} {{STORE export matches the documented userDataStorage key}}
735
+ CONSOLE LOG ENTRY: Package testing: Finished {{SubcellularLocation}} {{STORE export matches the documented userDataStorage key}} with {{success}} for 0 ms
736
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/log/tests/package?benchmark=false&ciCd=false
737
+ CONSOLE LOG ENTRY: Package testing: Started {{SubcellularLocation}} {{ensureLocationColumn short-circuits on accession-set hash match}}
738
+ CONSOLE LOG ENTRY: Package testing: Finished {{SubcellularLocation}} {{ensureLocationColumn short-circuits on accession-set hash match}} with {{success}} for 4 ms
739
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/log/tests/package?benchmark=false&ciCd=false
740
+ CONSOLE LOG ENTRY: Package testing: Started {{SubcellularLocation}} {{ensureLocationColumn forwards progress through fetch + emits init-column}}
741
+ CONSOLE LOG ENTRY: Package testing: Finished {{SubcellularLocation}} {{ensureLocationColumn forwards progress through fetch + emits init-column}} with {{success}} for 5 ms
742
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/log/tests/package?benchmark=false&ciCd=false
743
+ CONSOLE LOG ENTRY: Package testing: Started {{Organisms}}
744
+ CONSOLE LOG ENTRY: Package testing: Started {{Organisms}} {{resolveOrganismCode maps scientific names (incl. strain-qualified) to codes}}
745
+ CONSOLE LOG ENTRY: Package testing: Finished {{Organisms}} {{resolveOrganismCode maps scientific names (incl. strain-qualified) to codes}} with {{success}} for 0 ms
746
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/log/tests/package?benchmark=false&ciCd=false
747
+ CONSOLE LOG ENTRY: Package testing: Started {{Organisms}} {{resolveOrganismCode returns undefined for unsupported / empty}}
748
+ CONSOLE LOG ENTRY: Package testing: Finished {{Organisms}} {{resolveOrganismCode returns undefined for unsupported / empty}} with {{success}} for 1 ms
749
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/log/user?from=1783864902435&to=1783864937435
750
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/log/tests/package?benchmark=false&ciCd=false
751
+ CONSOLE LOG ENTRY: Package testing: Started {{Organisms}} {{every ORGANISM_LIST display resolves back to its own code}}
752
+ CONSOLE LOG ENTRY: Package testing: Finished {{Organisms}} {{every ORGANISM_LIST display resolves back to its own code}} with {{success}} for 1 ms
753
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/log/tests/package?benchmark=false&ciCd=false
754
+ CONSOLE LOG ENTRY: Package testing: Started {{Organisms}} {{detectOrganismCode: single-species PG.Organisms column → that code}}
755
+ CONSOLE LOG ENTRY: Package testing: Finished {{Organisms}} {{detectOrganismCode: single-species PG.Organisms column → that code}} with {{success}} for 1 ms
756
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/log/tests/package?benchmark=false&ciCd=false
757
+ CONSOLE LOG ENTRY: Package testing: Started {{Organisms}} {{detectOrganismCode: works on a generically named "Organism" column}}
758
+ CONSOLE LOG ENTRY: Package testing: Finished {{Organisms}} {{detectOrganismCode: works on a generically named "Organism" column}} with {{success}} for 4 ms
759
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/docker/user/containers/logs?from=1783864902435&to=1783864937435
760
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/log/tests/package?benchmark=false&ciCd=false
761
+ CONSOLE LOG ENTRY: Package testing: Started {{Organisms}} {{detectOrganismCode: mixed empties/unknowns but one species → that code}}
762
+ CONSOLE LOG ENTRY: Package testing: Finished {{Organisms}} {{detectOrganismCode: mixed empties/unknowns but one species → that code}} with {{success}} for 3 ms
763
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/log/tests/package?benchmark=false&ciCd=false
764
+ CONSOLE LOG ENTRY: Package testing: Started {{Organisms}} {{detectOrganismCode: multi-species (HYE-style mix) → undefined (do not guess)}}
765
+ CONSOLE LOG ENTRY: Package testing: Finished {{Organisms}} {{detectOrganismCode: multi-species (HYE-style mix) → undefined (do not guess)}} with {{success}} for 2 ms
766
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/log/tests/package?benchmark=false&ciCd=false
767
+ CONSOLE LOG ENTRY: Package testing: Started {{Organisms}} {{detectOrganismCode: no organism column → undefined}}
768
+ CONSOLE LOG ENTRY: Package testing: Finished {{Organisms}} {{detectOrganismCode: no organism column → undefined}} with {{success}} for 2 ms
769
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/log/tests/package?benchmark=false&ciCd=false
770
+ CONSOLE LOG ENTRY: Package testing: Started {{Log2 Scale}}
771
+ CONSOLE LOG ENTRY: Package testing: Started {{Log2 Scale}} {{getIntensityOriginals: only the pristine (non-log2) intensity columns}}
772
+ CONSOLE LOG ENTRY: Package testing: Finished {{Log2 Scale}} {{getIntensityOriginals: only the pristine (non-log2) intensity columns}} with {{success}} for 1 ms
773
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/log/tests/package?benchmark=false&ciCd=false
774
+ CONSOLE LOG ENTRY: Package testing: Started {{Log2 Scale}} {{detectCurrentLog2Applied: transform vs copy is read from the values}}
775
+ CONSOLE LOG ENTRY: Package testing: Finished {{Log2 Scale}} {{detectCurrentLog2Applied: transform vs copy is read from the values}} with {{success}} for 3 ms
776
+ CONSOLE LOG ENTRY: Package testing: Started {{Log2 Scale}} {{applyLog2Scale: transform→copy rebuilds values, clears stale tags, is idempotent}}
777
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/log/tests/package?benchmark=false&ciCd=false
778
+ CONSOLE LOG ENTRY: Package testing: Finished {{Log2 Scale}} {{applyLog2Scale: transform→copy rebuilds values, clears stale tags, is idempotent}} with {{success}} for 4 ms
779
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/docker/user/images/logs?from=1783864902435&to=1783864937435
780
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/log/tests/package?benchmark=false&ciCd=false
781
+ CONSOLE LOG ENTRY: Package testing: Started {{Log2 Scale}} {{applyLog2Scale: copy→transform restores the log2 transform}}
782
+ CONSOLE LOG ENTRY: Package testing: Finished {{Log2 Scale}} {{applyLog2Scale: copy→transform restores the log2 transform}} with {{success}} for 2 ms
783
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/admin/health
784
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/log/tests/package?benchmark=false&ciCd=false
785
+ CONSOLE LOG ENTRY: Package testing: Started {{Log2 Scale}} {{getIntensityOriginals: empty when no intensity columns}}
786
+ CONSOLE LOG ENTRY: Package testing: Finished {{Log2 Scale}} {{getIntensityOriginals: empty when no intensity columns}} with {{success}} for 1 ms
787
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/log/tests/package?benchmark=false&ciCd=false
788
+ CONSOLE LOG ENTRY: Package testing: Started {{Volcano}}
789
+ CONSOLE LOG ENTRY: Package testing: Started {{Volcano}} {{ensureNegLog10Column: stable name, values re-init in place on metric toggle}}
790
+ CONSOLE LOG ENTRY: Package testing: Finished {{Volcano}} {{ensureNegLog10Column: stable name, values re-init in place on metric toggle}} with {{success}} for 1 ms
791
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/log/tests/package?benchmark=false&ciCd=false
792
+ CONSOLE LOG ENTRY: Package testing: Started {{Volcano}} {{ensureDirectionColumn: parameterized by metric, in-place, ARGB map}}
793
+ CONSOLE LOG ENTRY: Package testing: Finished {{Volcano}} {{ensureDirectionColumn: parameterized by metric, in-place, ARGB map}} with {{success}} for 1 ms
794
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/log/tests/package?benchmark=false&ciCd=false
795
+ CONSOLE LOG ENTRY: Package testing: Started {{Volcano}} {{p-value metric guarded when column absent — stays on adj.p-value}}
796
+ CONSOLE LOG ENTRY: Package testing: Finished {{Volcano}} {{p-value metric guarded when column absent — stays on adj.p-value}} with {{success}} for 5 ms
797
+ CONSOLE LOG ENTRY: Package testing: Started {{Volcano}} {{ensureLocationColumn: SEMTYPE + locked LOCATION_COLORS, no network needed}}
798
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/log/tests/package?benchmark=false&ciCd=false
799
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/user_settings_storage/proteomics-subcell-loc?currentUser=true
800
+ CONSOLE LOG ENTRY: Package testing: Finished {{Volcano}} {{ensureLocationColumn: SEMTYPE + locked LOCATION_COLORS, no network needed}} with {{success}} for 39 ms
801
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/log/tests/package?benchmark=false&ciCd=false
802
+ CONSOLE LOG ENTRY: Package testing: Started {{Volcano}} {{createVolcanoPlot: axis-chip-hiding stylesheet + marker class (custom labels are sole titles)}}
803
+ CONSOLE LOG ENTRY: Package testing: Finished {{Volcano}} {{createVolcanoPlot: axis-chip-hiding stylesheet + marker class (custom labels are sole titles)}} with {{success}} for 49 ms
804
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/log/tests/package?benchmark=false&ciCd=false
805
+ CONSOLE LOG ENTRY: Package testing: Started {{Volcano}} {{recomputeVolcano: Y, class, threshold lines stay consistent across Q↔P toggle}}
806
+ CONSOLE LOG ENTRY: Package testing: Finished {{Volcano}} {{recomputeVolcano: Y, class, threshold lines stay consistent across Q↔P toggle}} with {{success}} for 153 ms
807
+ CONSOLE LOG REQUEST: 201, http://localhost:8080/api/reports?sendEmail=false
808
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/log/tests/package?benchmark=false&ciCd=false
809
+ CONSOLE LOG ENTRY: Package testing: Started {{Volcano}} {{toggle wiring: every metric × colorDim combination drives recomputeVolcano}}
810
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/user_settings_storage/proteomics-subcell-loc?currentUser=true
811
+ CONSOLE LOG REQUEST: 400, http://localhost:8080/api/connectors/proxy?url=https://rest.uniprot.org/uniprotkb/stream?query=(accession%253AP1%2520OR%2520accession%253AP2%2520OR%2520accession%253AP3)&fields=accession,cc_subcellular_location,go_c,reviewed,gene_primary&format=tsv
812
+ CONSOLE LOG ENTRY: Failed to load resource: the server responded with a status of 400 (Bad Request)
813
+ CONSOLE LOG ENTRY: UniProt stream returned status 400; continuing
814
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/user_settings_storage/proteomics-subcell-loc?currentUser=true
815
+ CONSOLE LOG ENTRY: Package testing: Finished {{Volcano}} {{toggle wiring: every metric × colorDim combination drives recomputeVolcano}} with {{success}} for 730 ms
816
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/log/tests/package?benchmark=false&ciCd=false
817
+ CONSOLE LOG ENTRY: Package testing: Started {{Volcano}} {{recomputeVolcano: location color dim sets the Subcellular Location column}}
818
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/user_settings_storage/proteomics-subcell-loc?currentUser=true
819
+ CONSOLE LOG ENTRY: Package testing: Finished {{Volcano}} {{recomputeVolcano: location color dim sets the Subcellular Location column}} with {{success}} for 46 ms
820
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/log/tests/package?benchmark=false&ciCd=false
821
+ CONSOLE LOG ENTRY: Package testing: Started {{Volcano}} {{showVolcanoBusy attaches overlay, updateVolcanoBusy mutates, hideVolcanoBusy detaches}}
822
+ CONSOLE LOG ENTRY: Package testing: Finished {{Volcano}} {{showVolcanoBusy attaches overlay, updateVolcanoBusy mutates, hideVolcanoBusy detaches}} with {{success}} for 34 ms
823
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/log/tests/package?benchmark=false&ciCd=false
824
+ CONSOLE LOG ENTRY: Package testing: Started {{Volcano}} {{ensureLocationColumn short-circuits warm-cache path within one tick}}
825
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/connectors/proxy?url=https://rest.uniprot.org/uniprotkb/stream?query=(accession%253AP11111)&fields=accession,cc_subcellular_location,go_c,reviewed,gene_primary&format=tsv
826
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/connectors/proxy?url=https://rest.uniprot.org/uniprotkb/stream?query=(gene_exact%253A14)%20AND%20(reviewed:true)&fields=accession,gene_primary,cc_subcellular_location,go_c&format=tsv
827
+ CONSOLE LOG ENTRY: Package testing: Finished {{Volcano}} {{ensureLocationColumn short-circuits warm-cache path within one tick}} with {{success}} for 847 ms
828
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/log/tests/package?benchmark=false&ciCd=false
829
+ CONSOLE LOG ENTRY: Package testing: Started {{Volcano}} {{axis-max override: set/get round-trips, pins symmetric X + 0-based Y, empty clears}}
830
+ CONSOLE LOG ENTRY: Package testing: Finished {{Volcano}} {{axis-max override: set/get round-trips, pins symmetric X + 0-based Y, empty clears}} with {{success}} for 23 ms
831
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/log/tests/package?benchmark=false&ciCd=false
832
+ CONSOLE LOG ENTRY: Package testing: Started {{Volcano}} {{axis-max override: survives a metric recompute (tag-based state)}}
833
+ CONSOLE LOG ENTRY: Package testing: Finished {{Volcano}} {{axis-max override: survives a metric recompute (tag-based state)}} with {{success}} for 34 ms
834
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/log/tests/package?benchmark=false&ciCd=false
835
+ CONSOLE LOG ENTRY: Package testing: Started {{Proteomics: 14-02}} skipped {{2}}
836
+ CONSOLE LOG ENTRY: Package testing: Started {{Proteomics: 14-02}} {{volcanoDirectionStrings: categories derive from proteomics.groups tag}}
837
+ CONSOLE LOG ENTRY: Package testing: Finished {{Proteomics: 14-02}} {{volcanoDirectionStrings: categories derive from proteomics.groups tag}} with {{success}} for 1 ms
838
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/log/tests/package?benchmark=false&ciCd=false
839
+ CONSOLE LOG ENTRY: Package testing: Started {{Proteomics: 14-02}} {{volcanoDirectionStringsFallback: no groups → "Enriched in group1/group2" + "Not significant"}}
840
+ CONSOLE LOG ENTRY: Package testing: Finished {{Proteomics: 14-02}} {{volcanoDirectionStringsFallback: no groups → "Enriched in group1/group2" + "Not significant"}} with {{success}} for 2 ms
841
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/log/tests/package?benchmark=false&ciCd=false
842
+ CONSOLE LOG ENTRY: Package testing: Started {{Proteomics: 14-02}} {{volcanoDirectionColors: categorical color map carries exact ARGB ints}}
843
+ CONSOLE LOG ENTRY: Package testing: Finished {{Proteomics: 14-02}} {{volcanoDirectionColors: categorical color map carries exact ARGB ints}} with {{success}} for 3 ms
844
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/log/tests/package?benchmark=false&ciCd=false
845
+ CONSOLE LOG ENTRY: Package testing: Started {{Proteomics: 14-02}} {{volcanoTitle: synthesizes "Volcano Plot: g1 vs g2" from proteomics.groups}}
846
+ CONSOLE LOG ENTRY: Package testing: Finished {{Proteomics: 14-02}} {{volcanoTitle: synthesizes "Volcano Plot: g1 vs g2" from proteomics.groups}} with {{success}} for 64 ms
847
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/log/tests/package?benchmark=false&ciCd=false
848
+ CONSOLE LOG ENTRY: Package testing: Started {{Proteomics: 14-02}} {{volcanoTitleFallback: no groups → "Volcano Plot"}}
849
+ CONSOLE LOG ENTRY: Package testing: Finished {{Proteomics: 14-02}} {{volcanoTitleFallback: no groups → "Volcano Plot"}} with {{success}} for 41 ms
850
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/log/tests/package?benchmark=false&ciCd=false
851
+ CONSOLE LOG ENTRY: Package testing: Started {{Proteomics: 14-02}} {{volcanoAxisLabels: X invariant; Y rewrites live on metric toggle}}
852
+ CONSOLE LOG ENTRY: Package testing: Finished {{Proteomics: 14-02}} {{volcanoAxisLabels: X invariant; Y rewrites live on metric toggle}} with {{success}} for 93 ms
853
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/log/tests/package?benchmark=false&ciCd=false
854
+ CONSOLE LOG ENTRY: Package testing: Started {{Proteomics: 14-02}} {{volcanoTopN: applyTopNLabels labels top-15 via the label column, not selection}}
855
+ CONSOLE LOG ENTRY: Package testing: Finished {{Proteomics: 14-02}} {{volcanoTopN: applyTopNLabels labels top-15 via the label column, not selection}} with {{success}} for 25 ms
856
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/log/tests/package?benchmark=false&ciCd=false
857
+ CONSOLE LOG ENTRY: Package testing: Started {{Proteomics: 14-02}} {{volcanoLabelBindsToDisplayName: label text prefers DISPLAY_NAME over Gene name}}
858
+ CONSOLE LOG ENTRY: Package testing: Finished {{Proteomics: 14-02}} {{volcanoLabelBindsToDisplayName: label text prefers DISPLAY_NAME over Gene name}} with {{success}} for 23 ms
859
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/log/tests/package?benchmark=false&ciCd=false
860
+ CONSOLE LOG ENTRY: Package testing: Started {{Proteomics: 14-02}} {{volcanoLabelFallbackToGeneName: no Display Name → label text uses Gene name}}
861
+ CONSOLE LOG ENTRY: Package testing: Finished {{Proteomics: 14-02}} {{volcanoLabelFallbackToGeneName: no Display Name → label text uses Gene name}} with {{success}} for 38 ms
862
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/log/tests/package?benchmark=false&ciCd=false
863
+ CONSOLE LOG ENTRY: Package testing: Started {{Proteomics: 14-02}} {{applyTopNLabelsExtraRows: labels top-N plus extra (search) rows; selection untouched}}
864
+ CONSOLE LOG ENTRY: Package testing: Finished {{Proteomics: 14-02}} {{applyTopNLabelsExtraRows: labels top-N plus extra (search) rows; selection untouched}} with {{success}} for 25 ms
865
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/log/tests/package?benchmark=false&ciCd=false
866
+ CONSOLE LOG ENTRY: Package testing: Started {{Proteomics: 14-02}} {{volcanoMetricTagPersistsViaRecompute: recomputeVolcano writes proteomics.volcano_metric}}
867
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/user_settings_storage/proteomics-subcell-loc?currentUser=true
868
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/user_settings_storage/proteomics-subcell-loc?currentUser=true
869
+ CONSOLE LOG ENTRY: Package testing: Finished {{Proteomics: 14-02}} {{volcanoMetricTagPersistsViaRecompute: recomputeVolcano writes proteomics.volcano_metric}} with {{success}} for 126 ms
870
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/log/tests/package?benchmark=false&ciCd=false
871
+ CONSOLE LOG ENTRY: Package testing: Started {{Proteomics: 14-02}} {{volcanoCounterRenders: heading + Total + per-direction rows}}
872
+ CONSOLE LOG ENTRY: Package testing: Finished {{Proteomics: 14-02}} {{volcanoCounterRenders: heading + Total + per-direction rows}} with {{success}} for 62 ms
873
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/log/tests/package?benchmark=false&ciCd=false
874
+ CONSOLE LOG ENTRY: Package testing: Skipped {{Proteomics: 14-02}} {{volcanoCounterFilterRecompute: Total updates within one debounce window on filter change}}
875
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/log/tests/package?benchmark=false&ciCd=false
876
+ CONSOLE LOG ENTRY: Package testing: Skipped {{Proteomics: 14-02}} {{volcanoCounterEmptyFilter: zero rows still renders Total: 0}}
877
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/log/tests/package?benchmark=false&ciCd=false
878
+ CONSOLE LOG ENTRY: Package testing: Started {{Proteomics: 14-02}} {{volcanoCounterSubscriptionsDisposedOnReentry: only one overlay remains after re-create}}
879
+ CONSOLE LOG ENTRY: Package testing: Finished {{Proteomics: 14-02}} {{volcanoCounterSubscriptionsDisposedOnReentry: only one overlay remains after re-create}} with {{success}} for 40 ms
880
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/log/tests/package?benchmark=false&ciCd=false
881
+ CONSOLE LOG ENTRY: Package testing: Started {{Proteomics: 14-02}} {{volcanoCounterLocationMode: per-location rows after color switch}}
882
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/user_settings_storage/proteomics-subcell-loc?currentUser=true
883
+ CONSOLE LOG REQUEST: 400, http://localhost:8080/api/connectors/proxy?url=https://rest.uniprot.org/uniprotkb/stream?query=(accession%253AP0%2520OR%2520accession%253AP4%2520OR%2520accession%253AP5%2520OR%2520accession%253AP6%2520OR%2520accession%253AP7%2520OR%2520accession%253AP8%2520OR%2520accession%253AP9%2520OR%2520accession%253AP10%2520OR%2520accession%253AP11%2520OR%2520accession%253AP12%2520OR%2520accession%253AP13%2520OR%2520accession%253AP14%2520OR%2520accession%253AP15%2520OR%2520accession%253AP16%2520OR%2520accession%253AP17%2520OR%2520accession%253AP18%2520OR%2520accession%253AP19)&fields=accession,cc_subcellular_location,go_c,reviewed,gene_primary&format=tsv
884
+ CONSOLE LOG ENTRY: Failed to load resource: the server responded with a status of 400 (Bad Request)
885
+ CONSOLE LOG ENTRY: UniProt stream returned status 400; continuing
886
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/user_settings_storage/proteomics-subcell-loc?currentUser=true
887
+ CONSOLE LOG ENTRY: Package testing: Finished {{Proteomics: 14-02}} {{volcanoCounterLocationMode: per-location rows after color switch}} with {{success}} for 453 ms
888
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/log/tests/package?benchmark=false&ciCd=false
889
+ CONSOLE LOG ENTRY: Package testing: Started {{Proteomics: 14-02}} {{volcanoOptionsPreloadMetric: readVolcanoState reflects last recompute metric}}
890
+ CONSOLE LOG ENTRY: Package testing: Finished {{Proteomics: 14-02}} {{volcanoOptionsPreloadMetric: readVolcanoState reflects last recompute metric}} with {{success}} for 147 ms
891
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/log/tests/package?benchmark=false&ciCd=false
892
+ CONSOLE LOG ENTRY: Package testing: Started {{Proteomics: 14-02}} {{volcanoOptionsPreloadColorDim: readVolcanoState reflects current colorColumnName}}
893
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/user_settings_storage/proteomics-subcell-loc?currentUser=true
894
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/user_settings_storage/proteomics-subcell-loc?currentUser=true
895
+ CONSOLE LOG ENTRY: Package testing: Finished {{Proteomics: 14-02}} {{volcanoOptionsPreloadColorDim: readVolcanoState reflects current colorColumnName}} with {{success}} for 242 ms
896
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/log/tests/package?benchmark=false&ciCd=false
897
+ CONSOLE LOG ENTRY: Package testing: Started {{Proteomics: 14-01}}
898
+ CONSOLE LOG ENTRY: Package testing: Started {{Proteomics: 14-01}} {{geneLabelResolverSemTypes: SEMTYPE constants are the locked strings}}
899
+ CONSOLE LOG ENTRY: Package testing: Finished {{Proteomics: 14-01}} {{geneLabelResolverSemTypes: SEMTYPE constants are the locked strings}} with {{success}} for 0 ms
900
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/log/tests/package?benchmark=false&ciCd=false
901
+ CONSOLE LOG ENTRY: Package testing: Started {{Proteomics: 14-01}} {{geneLabelResolverDetectorMirror: SEMTYPE values are valid Column.semType strings}}
902
+ CONSOLE LOG ENTRY: Package testing: Finished {{Proteomics: 14-01}} {{geneLabelResolverDetectorMirror: SEMTYPE values are valid Column.semType strings}} with {{success}} for 2 ms
903
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/log/tests/package?benchmark=false&ciCd=false
904
+ CONSOLE LOG ENTRY: Package testing: Started {{Proteomics: 14-01}} {{detectSpecies: maps prefixes per CK-omics species table}}
905
+ CONSOLE LOG ENTRY: Package testing: Finished {{Proteomics: 14-01}} {{detectSpecies: maps prefixes per CK-omics species table}} with {{success}} for 1 ms
906
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/log/tests/package?benchmark=false&ciCd=false
907
+ CONSOLE LOG ENTRY: Package testing: Started {{Proteomics: 14-01}} {{isEnsemblEligible: filters LOC/RGD/AABR per CK-omics line 933}}
908
+ CONSOLE LOG ENTRY: Package testing: Finished {{Proteomics: 14-01}} {{isEnsemblEligible: filters LOC/RGD/AABR per CK-omics line 933}} with {{success}} for 1 ms
909
+ CONSOLE LOG ENTRY: Package testing: Started {{Proteomics: 14-01}} {{isPredicted: locked CK-omics prefix list}}
910
+ CONSOLE LOG ENTRY: Package testing: Finished {{Proteomics: 14-01}} {{isPredicted: locked CK-omics prefix list}} with {{success}} for 1 ms
911
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/log/tests/package?benchmark=false&ciCd=false
912
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/log/tests/package?benchmark=false&ciCd=false
913
+ CONSOLE LOG ENTRY: Package testing: Started {{Proteomics: 14-01}} {{extractReadableDescription: strips Predicted-to prefixes and species suffixes}}
914
+ CONSOLE LOG ENTRY: Package testing: Finished {{Proteomics: 14-01}} {{extractReadableDescription: strips Predicted-to prefixes and species suffixes}} with {{success}} for 1 ms
915
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/log/tests/package?benchmark=false&ciCd=false
916
+ CONSOLE LOG ENTRY: Package testing: Started {{Proteomics: 14-01}} {{applyMarkerRules: appends * and † per CK-omics line 1011}}
917
+ CONSOLE LOG ENTRY: Package testing: Finished {{Proteomics: 14-01}} {{applyMarkerRules: appends * and † per CK-omics line 1011}} with {{success}} for 1 ms
918
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/log/tests/package?benchmark=false&ciCd=false
919
+ CONSOLE LOG ENTRY: Package testing: Started {{Proteomics: 14-01}} {{lookupEnsemblBatch: POSTs ids and parses response}}
920
+ CONSOLE LOG ENTRY: Package testing: Finished {{Proteomics: 14-01}} {{lookupEnsemblBatch: POSTs ids and parses response}} with {{success}} for 12 ms
921
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/log/tests/package?benchmark=false&ciCd=false
922
+ CONSOLE LOG ENTRY: Package testing: Started {{Proteomics: 14-01}} {{lookupEnsemblBatch: retries once on 429 with Retry-After}}
923
+ CONSOLE LOG ENTRY: Package testing: Finished {{Proteomics: 14-01}} {{lookupEnsemblBatch: retries once on 429 with Retry-After}} with {{success}} for 1 ms
924
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/log/tests/package?benchmark=false&ciCd=false
925
+ CONSOLE LOG ENTRY: Package testing: Started {{Proteomics: 14-01}} {{resolveGeneLabels: no-op path still creates Display Name + Source ID columns}}
926
+ CONSOLE LOG ENTRY: Package testing: Finished {{Proteomics: 14-01}} {{resolveGeneLabels: no-op path still creates Display Name + Source ID columns}} with {{success}} for 2 ms
927
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/log/tests/package?benchmark=false&ciCd=false
928
+ CONSOLE LOG ENTRY: Package testing: Started {{Proteomics: 14-01}} {{resolveGeneLabels: LOC/RGD/AABR keep raw ID + †, never sent to Ensembl}}
929
+ CONSOLE LOG ENTRY: Package testing: Finished {{Proteomics: 14-01}} {{resolveGeneLabels: LOC/RGD/AABR keep raw ID + †, never sent to Ensembl}} with {{success}} for 3 ms
930
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/log/tests/package?benchmark=false&ciCd=false
931
+ CONSOLE LOG ENTRY: Package testing: Started {{Proteomics: 14-01}} {{resolveGeneLabels: disambiguates duplicates with (Source ID) suffix and warns}}
932
+ CONSOLE LOG ENTRY: Package testing: Finished {{Proteomics: 14-01}} {{resolveGeneLabels: disambiguates duplicates with (Source ID) suffix and warns}} with {{success}} for 3 ms
933
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/log/tests/package?benchmark=false&ciCd=false
934
+ CONSOLE LOG ENTRY: Package testing: Started {{Proteomics: 14-01}} {{resolveGeneLabels: cache short-circuits second call}}
935
+ CONSOLE LOG ENTRY: Package testing: Finished {{Proteomics: 14-01}} {{resolveGeneLabels: cache short-circuits second call}} with {{success}} for 1 ms
936
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/log/tests/package?benchmark=false&ciCd=false
937
+ CONSOLE LOG ENTRY: Package testing: Started {{Proteomics: 14-01}} {{resolveGeneLabels: degrades gracefully on fetchProxy throw}}
938
+ CONSOLE LOG ENTRY: Ensembl lookup/id batch failed (network): network down
939
+ CONSOLE LOG ENTRY: Package testing: Finished {{Proteomics: 14-01}} {{resolveGeneLabels: degrades gracefully on fetchProxy throw}} with {{success}} for 4 ms
940
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/log/tests/package?benchmark=false&ciCd=false
941
+ CONSOLE LOG ENTRY: Package testing: Started {{Proteomics: 14-01}} {{parser integration: every parser produces Display Name + Source ID columns}}
942
+ CONSOLE LOG ENTRY: Package testing: Finished {{Proteomics: 14-01}} {{parser integration: every parser produces Display Name + Source ID columns}} with {{success}} for 10 ms
943
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/log/tests/package?benchmark=false&ciCd=false
944
+ CONSOLE LOG ENTRY: Package testing: Started {{Proteomics: 14-01}} {{resolveGeneLabels: three-level fallback uses description when external_name missing}}
945
+ CONSOLE LOG ENTRY: Package testing: Finished {{Proteomics: 14-01}} {{resolveGeneLabels: three-level fallback uses description when external_name missing}} with {{success}} for 2 ms
946
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/log/tests/package?benchmark=false&ciCd=false
947
+ CONSOLE LOG ENTRY: Package testing: Started {{Proteomics: 14-05}}
948
+ CONSOLE LOG ENTRY: Package testing: Started {{Proteomics: 14-05}} {{smartPathwayFilter constants match CK-omics literal lists}}
949
+ CONSOLE LOG ENTRY: Package testing: Finished {{Proteomics: 14-05}} {{smartPathwayFilter constants match CK-omics literal lists}} with {{success}} for 0 ms
950
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/log/tests/package?benchmark=false&ciCd=false
951
+ CONSOLE LOG ENTRY: Package testing: Started {{Proteomics: 14-05}} {{smartFilterDropsGenericParentWhenChildKept}}
952
+ CONSOLE LOG ENTRY: Package testing: Finished {{Proteomics: 14-05}} {{smartFilterDropsGenericParentWhenChildKept}} with {{success}} for 8 ms
953
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/log/tests/package?benchmark=false&ciCd=false
954
+ CONSOLE LOG ENTRY: Package testing: Started {{Proteomics: 14-05}} {{smartFilterKeepsGenericParentWhenNoChildFirst}}
955
+ CONSOLE LOG ENTRY: Package testing: Finished {{Proteomics: 14-05}} {{smartFilterKeepsGenericParentWhenNoChildFirst}} with {{success}} for 4 ms
956
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/log/tests/package?benchmark=false&ciCd=false
957
+ CONSOLE LOG ENTRY: Package testing: Started {{Proteomics: 14-05}} {{smartFilterCapsGoBpAt15}}
958
+ CONSOLE LOG ENTRY: Package testing: Finished {{Proteomics: 14-05}} {{smartFilterCapsGoBpAt15}} with {{success}} for 3 ms
959
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/log/tests/package?benchmark=false&ciCd=false
960
+ CONSOLE LOG ENTRY: Package testing: Started {{Proteomics: 14-05}} {{smartFilterHonorsCustomCap (M3 — configurable max terms per source)}}
961
+ CONSOLE LOG ENTRY: Package testing: Finished {{Proteomics: 14-05}} {{smartFilterHonorsCustomCap (M3 — configurable max terms per source)}} with {{success}} for 1 ms
962
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/log/tests/package?benchmark=false&ciCd=false
963
+ CONSOLE LOG ENTRY: Package testing: Started {{Proteomics: 14-05}} {{smartFilterCombinedCapForNonGoBp (Assumption A4)}}
964
+ CONSOLE LOG ENTRY: Package testing: Finished {{Proteomics: 14-05}} {{smartFilterCombinedCapForNonGoBp (Assumption A4)}} with {{success}} for 1 ms
965
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/log/tests/package?benchmark=false&ciCd=false
966
+ CONSOLE LOG ENTRY: Package testing: Started {{Proteomics: 14-05}} {{smartFilterPreservesPValueSortOrder}}
967
+ CONSOLE LOG ENTRY: Package testing: Finished {{Proteomics: 14-05}} {{smartFilterPreservesPValueSortOrder}} with {{success}} for 2 ms
968
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/log/tests/package?benchmark=false&ciCd=false
969
+ CONSOLE LOG ENTRY: Package testing: Started {{Proteomics: 14-05}} {{smartFilterEmptyInput}}
970
+ CONSOLE LOG ENTRY: Package testing: Finished {{Proteomics: 14-05}} {{smartFilterEmptyInput}} with {{success}} for 1 ms
971
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/log/tests/package?benchmark=false&ciCd=false
972
+ CONSOLE LOG ENTRY: Package testing: Started {{Proteomics: 14-05}} {{smartFilterStatsCount}}
973
+ CONSOLE LOG ENTRY: Package testing: Finished {{Proteomics: 14-05}} {{smartFilterStatsCount}} with {{success}} for 1 ms
974
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/log/tests/package?benchmark=false&ciCd=false
975
+ CONSOLE LOG ENTRY: Package testing: Started {{Proteomics: 14-05}} {{smartFilter empty GO:BP, only other sources}}
976
+ CONSOLE LOG ENTRY: Package testing: Finished {{Proteomics: 14-05}} {{smartFilter empty GO:BP, only other sources}} with {{success}} for 1 ms
977
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/log/tests/package?benchmark=false&ciCd=false
978
+ CONSOLE LOG ENTRY: Package testing: Started {{Proteomics: 14-05}} {{smartFilter non-GO:BP path also sorts by p ASC}}
979
+ CONSOLE LOG ENTRY: Package testing: Finished {{Proteomics: 14-05}} {{smartFilter non-GO:BP path also sorts by p ASC}} with {{success}} for 1 ms
980
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/log/tests/package?benchmark=false&ciCd=false
981
+ CONSOLE LOG ENTRY: Package testing: Started {{Proteomics: 14-04}}
982
+ CONSOLE LOG ENTRY: Package testing: Started {{Proteomics: 14-04}} {{uniprotPanelPerGroupBarsRender}}
983
+ CONSOLE LOG ENTRY: Package testing: Finished {{Proteomics: 14-04}} {{uniprotPanelPerGroupBarsRender}} with {{success}} for 92 ms
984
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/log/tests/package?benchmark=false&ciCd=false
985
+ CONSOLE LOG ENTRY: Package testing: Started {{Proteomics: 14-04}} {{uniprotPanelPerGroupBarsEmptyState}}
986
+ CONSOLE LOG ENTRY: Package testing: Finished {{Proteomics: 14-04}} {{uniprotPanelPerGroupBarsEmptyState}} with {{success}} for 81 ms
987
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/log/tests/package?benchmark=false&ciCd=false
988
+ CONSOLE LOG ENTRY: Package testing: Started {{Proteomics: 14-04}} {{uniprotPanelPerGroupBarsColors}}
989
+ CONSOLE LOG ENTRY: Package testing: Finished {{Proteomics: 14-04}} {{uniprotPanelPerGroupBarsColors}} with {{success}} for 65 ms
990
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/log/tests/package?benchmark=false&ciCd=false
991
+ CONSOLE LOG ENTRY: Package testing: Started {{Proteomics: 14-04}} {{uniprotPanelPerGroupMeanSDComputation}}
992
+ CONSOLE LOG ENTRY: Package testing: Finished {{Proteomics: 14-04}} {{uniprotPanelPerGroupMeanSDComputation}} with {{success}} for 65 ms
993
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/log/tests/package?benchmark=false&ciCd=false
994
+ CONSOLE LOG ENTRY: Package testing: Started {{Proteomics: 14-04}} {{uniprotPanelPerGroupBarsAllNanProtein}}
995
+ CONSOLE LOG ENTRY: Package testing: Finished {{Proteomics: 14-04}} {{uniprotPanelPerGroupBarsAllNanProtein}} with {{success}} for 74 ms
996
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/log/tests/package?benchmark=false&ciCd=false
997
+ CONSOLE LOG ENTRY: Package testing: Started {{Proteomics: 14-04}} {{findHostDataFrameForProteinPrefersActiveTable}}
998
+ CONSOLE LOG ENTRY: Package testing: Finished {{Proteomics: 14-04}} {{findHostDataFrameForProteinPrefersActiveTable}} with {{success}} for 192 ms
999
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/log/tests/package?benchmark=false&ciCd=false
1000
+ CONSOLE LOG ENTRY: Package testing: Started {{Proteomics: 14-04}} {{groupMeanColumnsCreated}}
1001
+ CONSOLE LOG ENTRY: Package testing: Finished {{Proteomics: 14-04}} {{groupMeanColumnsCreated}} with {{success}} for 2 ms
1002
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/log/tests/package?benchmark=false&ciCd=false
1003
+ CONSOLE LOG ENTRY: Package testing: Started {{Proteomics: 14-04}} {{groupMeanColumnsReRunSafe}}
1004
+ CONSOLE LOG ENTRY: Package testing: Finished {{Proteomics: 14-04}} {{groupMeanColumnsReRunSafe}} with {{success}} for 2 ms
1005
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/log/tests/package?benchmark=false&ciCd=false
1006
+ CONSOLE LOG ENTRY: Package testing: Started {{Proteomics: 14-04}} {{pearsonPerfectCorrelation}}
1007
+ CONSOLE LOG ENTRY: Package testing: Finished {{Proteomics: 14-04}} {{pearsonPerfectCorrelation}} with {{success}} for 1 ms
1008
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/log/tests/package?benchmark=false&ciCd=false
1009
+ CONSOLE LOG ENTRY: Package testing: Started {{Proteomics: 14-04}} {{pearsonNoCorrelation}}
1010
+ CONSOLE LOG ENTRY: Package testing: Finished {{Proteomics: 14-04}} {{pearsonNoCorrelation}} with {{success}} for 1 ms
1011
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/log/tests/package?benchmark=false&ciCd=false
1012
+ CONSOLE LOG ENTRY: Package testing: Started {{Proteomics: 14-04}} {{spearmanRankTies}}
1013
+ CONSOLE LOG ENTRY: Package testing: Finished {{Proteomics: 14-04}} {{spearmanRankTies}} with {{success}} for 2 ms
1014
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/log/tests/package?benchmark=false&ciCd=false
1015
+ CONSOLE LOG ENTRY: Package testing: Started {{Proteomics: 14-04}} {{createGroupMeanCorrelationFactory}}
1016
+ CONSOLE LOG ENTRY: Package testing: Finished {{Proteomics: 14-04}} {{createGroupMeanCorrelationFactory}} with {{success}} for 25 ms
1017
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/log/tests/package?benchmark=false&ciCd=false
1018
+ CONSOLE LOG ENTRY: Package testing: Started {{Proteomics: 14-04}} {{correlationDiagonalLine}}
1019
+ CONSOLE LOG ENTRY: Package testing: Finished {{Proteomics: 14-04}} {{correlationDiagonalLine}} with {{success}} for 21 ms
1020
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/log/tests/package?benchmark=false&ciCd=false
1021
+ CONSOLE LOG ENTRY: Package testing: Started {{Proteomics: 14-04}} {{correlationLabelBindsToDisplayName}}
1022
+ CONSOLE LOG ENTRY: Package testing: Finished {{Proteomics: 14-04}} {{correlationLabelBindsToDisplayName}} with {{success}} for 32 ms
1023
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/log/tests/package?benchmark=false&ciCd=false
1024
+ CONSOLE LOG ENTRY: Package testing: Started {{Publishing-Spike}}
1025
+ CONSOLE LOG ENTRY: Package testing: Started {{Publishing-Spike}} {{save+open roundtrip — enumerate survivors}}
1026
+ CONSOLE LOG ENTRY: [publish-spike] boot: {"projectName":"spike-publish-roundtrip-1783864949292","publishedId":"spike-pub-1783864949292","nowIso":"2026-07-12T14:02:29.292Z"}
1027
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/help/visualize/viewers/scatter-plot.md
1028
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/help/visualize/viewers/img/scatter-plot-colors-sizes-markers-labels-thumb.png
1029
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/help/visualize/viewers/img/scatter-plot-zoom-and-pack-thumb.png
1030
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/help/visualize/viewers/img/scatter-plot-selection-thumb.png
1031
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/help/visualize/viewers/img/scatter-plot-regression-line.png
1032
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/help/visualize/viewers/img/formula-lines-thumb.png
1033
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/help/visualize/viewers/img/annotation-regions-thumb.png
1034
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/help/visualize/viewers/img/formula-lines-annotation-regions-viewers.png
1035
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/help/visualize/viewers/img/scatterplot-custom-tooltip-thumb.png
1036
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/help/visualize/viewers/img/group-tooltip-thumb.png
1037
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/help/visualize/viewers/img/scatter-plot-labels-thumb.png
1038
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/help/visualize/viewers/img/scatter-plot-jitter-thumb.png
1039
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/help/visualize/viewers/img/scatter-plot-lines.png
1040
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/help/uploads/viewers/scatter-plot-molecules.png
1041
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/help/visualize/viewers/img/webgpu-scatterplot-thumb.png
1042
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/help/uploads/youtube/visualizations2.png
1043
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/tables?
1044
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/help/datagrok/datagrok.md
1045
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/tables?
1046
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/views?
1047
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/projects?include=relations.entity%2C&saveRelations=true
1048
+ CONSOLE LOG ENTRY: [publish-spike] save:ok: {"projectId":"521d8b80-6fc0-11f1-f2bc-b9430a53ff47","tableInfoId":"51cde4e0-6fc0-11f1-f151-2fcfd1ae2299"}
1049
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/projects/521d8b80-6fc0-11f1-f2bc-b9430a53ff47?include=relations.entity%2C
1050
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/projects/521d8b80-6fc0-11f1-f2bc-b9430a53ff47?
1051
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/tables/51cde4e0-6fc0-11f1-f151-2fcfd1ae2299/data?
1052
+ CONSOLE LOG ENTRY: [publish-spike] df.name survived: spike-source
1053
+ CONSOLE LOG ENTRY: [publish-spike] proteomics.* tags survived: {"proteomics.source":"generic","proteomics.de_method":"limma","proteomics.de_complete":"true","proteomics.groups":"{\"group1\":{\"name\":\"Control\",\"columns\":[]},\"group2\":{\"name\":\"Treatment\",\"columns\":[]}}","proteomics.published":"true","proteomics.published_at":"2026-07-12T14:02:29.292Z","proteomics.published_by":"spike-operator","proteomics.published_target":"SPIKE-TARGET-A","proteomics.published_de_method":"limma","proteomics.published_fc_threshold":"1.0","proteomics.published_p_threshold":"0.05","proteomics.published_version":"1","proteomics.published_id":"spike-pub-1783864949292","proteomics.published_includes_enrichment":"false"}
1054
+ CONSOLE LOG ENTRY: [publish-spike] Proteomics-* semTypes survived: {"Protein ID":"Proteomics-ProteinId","Gene Name":"Proteomics-GeneSymbol","log2FC":"Proteomics-Log2FC","adj.p-value":"Proteomics-PValue"}
1055
+ CONSOLE LOG ENTRY: [publish-spike] reopened columns shape: [{"name":"Protein ID","type":"string","semType":"Proteomics-ProteinId"},{"name":"Gene Name","type":"string","semType":"Proteomics-GeneSymbol"},{"name":"log2FC","type":"double","semType":"Proteomics-Log2FC"},{"name":"p-value","type":"double","semType":"Proteomics-PValue"},{"name":"adj.p-value","type":"double","semType":"Proteomics-PValue"},{"name":"significant","type":"string","semType":null},{"name":"direction","type":"string","semType":null}]
1056
+ CONSOLE LOG ENTRY: [publish-spike] project.options: {"proteomics.superseded_by":"dummy-id-A","custom_option":"hello","keys":["proteomics.superseded_by","custom_option"],"rawJson":"{\"proteomics.superseded_by\":\"dummy-id-A\",\"custom_option\":\"hello\"}"}
1057
+ CONSOLE LOG ENTRY: [publish-spike] viewers after reopen: [{"type":"Grid","props":{"#type":"GridLook","showAddNewRowIcon":true,"addNewRowOnLastRowEdit":true,"topLevelDefaultMenu":true,"allowColumnMenu":true,"columns":[{"width":28,"backgroundColor":4294440951,"customName":"","cellType":"row header","headerCellStyle":{"textWrap":"words"}},{"width":83,"columnName":"Protein ID","headerCellStyle":{"textWrap":"words"}},{"width":93,"columnName":"Gene Name","headerCellStyle":{"textWrap":"words"}},{"width":66,"columnName":"log2FC","cellType":"number","headerCellStyle":{"textWrap":"words"}},{"width":69,"columnName":"p-value","cellType":"number","headerCellStyle":{"textWrap":"words"}},{"width":90,"columnName":"adj.p-value","cellType":"number","headerCellStyle":{"textWrap":"words"}},{"width":87,"columnName":"significant","headerCellStyle":{"textWrap":"words"}},{"width":147,"columnName":"direction","headerCellStyle":{"textWrap":"words"}}]}},{"type":"Scatter plot","xColumnName":"log2FC","yColumnName":"adj.p-value","colorColumnName":null,"props":{"#type":"ScatterPlotLook","xColumnName":"log2FC","yColumnName":"adj.p-value","markerMinSize":3,"markerMaxSize":20,"legendPosition":"Auto"}}]
1058
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/privileges/permissions/?entityId=521d8b80-6fc0-11f1-f2bc-b9430a53ff47&all=false&&
1059
+ CONSOLE LOG ENTRY: [publish-spike] permissions.get keys: ["view","edit"]
1060
+ CONSOLE LOG ENTRY: [publish-spike] permissions.get json: {}
1061
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/spaces?
1062
+ CONSOLE LOG ENTRY: [publish-spike] umbrella-space: {"id":"52d51bb0-6fc0-11f1-f48f-75d32a408f80","friendlyName":"Spike-Reviews-1783864949292"}
1063
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/spaces/52d51bb0-6fc0-11f1-f48f-75d32a408f80/subspaces?link=false
1064
+ CONSOLE LOG ENTRY: [publish-spike] inherited-child-space: {"id":"52f267b0-6fc0-11f1-81b6-715789151c24","friendlyName":"Spike-Review-Inherit-1783864949292"}
1065
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/spaces/52f267b0-6fc0-11f1-81b6-715789151c24/entities/521d8b80-6fc0-11f1-f2bc-b9430a53ff47?link=false
1066
+ CONSOLE LOG ENTRY: [publish-spike] inherited-child:addEntity: ok
1067
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/users/current?
1068
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/privileges/permissions/user
1069
+ CONSOLE LOG ENTRY: [publish-spike] umbrella-space:grant-view: {"group":"(unnamed)"}
1070
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/privileges/permissions/?entityId=521d8b80-6fc0-11f1-f2bc-b9430a53ff47&all=false&&
1071
+ CONSOLE LOG ENTRY: [publish-spike] permissions.get(childProject) after umbrella-grant: {"keys":["view","edit"],"json":"{}"}
1072
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/projects?text=name%2520like%2520%2522spike-publish-roundtrip-%2525%2522&include=relations.entity%2C
1073
+ CONSOLE LOG ENTRY: [publish-spike] filter "like" result: {"count":1,"firstName":"spike-publish-roundtrip-1783864949292"}
1074
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/projects?text=name%2520contains%2520%2522spike-publish-roundtrip%2522&include=relations.entity%2C
1075
+ CONSOLE LOG ENTRY: [publish-spike] filter "contains" result: {"count":1,"firstName":"spike-publish-roundtrip-1783864949292"}
1076
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/projects/521d8b80-6fc0-11f1-f2bc-b9430a53ff47?include=relations.entity%2C
1077
+ CONSOLE LOG ENTRY: [publish-spike] projects.delete: ok
1078
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/tables/51cde4e0-6fc0-11f1-f151-2fcfd1ae2299?
1079
+ CONSOLE LOG ENTRY: [publish-spike] tables.find(tableInfoId) after project.delete: {"resolved":false,"name":null}
1080
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/spaces/52f267b0-6fc0-11f1-81b6-715789151c24?
1081
+ CONSOLE LOG ENTRY: [publish-spike] cleanup:inherited-child-space: ok
1082
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/spaces/52d51bb0-6fc0-11f1-f48f-75d32a408f80?
1083
+ CONSOLE LOG ENTRY: [publish-spike] cleanup:umbrella-space: ok
1084
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/projects/521d8b80-6fc0-11f1-f2bc-b9430a53ff47?include=relations.entity%2C
1085
+ CONSOLE LOG ENTRY: [publish-spike] cleanup:project (idempotent): ok
1086
+ CONSOLE LOG ENTRY: [publish-spike] done: spike enumeration complete — read output above
1087
+ CONSOLE LOG ENTRY: Package testing: Finished {{Publishing-Spike}} {{save+open roundtrip — enumerate survivors}} with {{success}} for 3940 ms
1088
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/log/tests/package?benchmark=false&ciCd=false
1089
+ CONSOLE LOG ENTRY: Package testing: Started {{Publishing}}
1090
+ CONSOLE LOG ENTRY: Package testing: Started {{Publishing}} {{assertPublishedShape round-trip on synthetic fixture (no-enrichment) — formula lines survive reopen}}
1091
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/help/visualize/viewers/scatter-plot.md
1092
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/groups/ca1e672e-e3be-40e0-b79b-8546b8bf62e6?include=children.child%2C%2Cparents.parent%2C
1093
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/groups?include=children.child%2C%2Cparents.parent%2C
1094
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/spaces?
1095
+ CONSOLE LOG REQUEST: 404, http://localhost:8080/api/spaces/54797ce0-6fc0-11f1-e3e2-850f78638638/subspace?name=Proteomics-Review-pub-roundtrip-t1-1783864953694
1096
+ CONSOLE LOG ENTRY: Failed to load resource: the server responded with a status of 404 (Not Found)
1097
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/help/datagrok/datagrok.md
1098
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/spaces/54797ce0-6fc0-11f1-e3e2-850f78638638/subspaces?link=false
1099
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/help/visualize/viewers/scatter-plot.md
1100
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/images/viewers/legend_icon.svg
1101
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/tables?
1102
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/tables?
1103
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/views?
1104
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/projects?include=relations.entity%2C&saveRelations=true
1105
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/spaces/54934670-6fc0-11f1-8a4c-61362a403ad5/entities/54b8f6e0-6fc0-11f1-834c-c3c29fed53d5?link=false
1106
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/privileges/permissions/user
1107
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/privileges/permissions/?entityId=54b8f6e0-6fc0-11f1-834c-c3c29fed53d5&all=false&&
1108
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/privileges/permissions/?entityId=54934670-6fc0-11f1-8a4c-61362a403ad5&all=false&&
1109
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/privileges/permissions/?entityId=54797ce0-6fc0-11f1-e3e2-850f78638638&all=false&&
1110
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/projects/54b8f6e0-6fc0-11f1-834c-c3c29fed53d5?include=relations.entity%2C
1111
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/projects/54b8f6e0-6fc0-11f1-834c-c3c29fed53d5?
1112
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/tables/54b8f6e0-6fc0-11f1-8806-5ba23d9edfaf/data?
1113
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/projects/54b8f6e0-6fc0-11f1-834c-c3c29fed53d5?include=relations.entity%2C
1114
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/projects/54b8f6e0-6fc0-11f1-834c-c3c29fed53d5?
1115
+ CONSOLE LOG REQUEST: 304, http://localhost:8080/api/tables/54b8f6e0-6fc0-11f1-8806-5ba23d9edfaf/data?
1116
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/projects/54b8f6e0-6fc0-11f1-834c-c3c29fed53d5?include=relations.entity%2C
1117
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/help/datagrok/datagrok.md
1118
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/spaces?
1119
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/spaces/54797ce0-6fc0-11f1-e3e2-850f78638638/children?types=Project&includeLinked=false
1120
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/spaces/54934670-6fc0-11f1-8a4c-61362a403ad5?
1121
+ CONSOLE LOG ENTRY: Package testing: Finished {{Publishing}} {{assertPublishedShape round-trip on synthetic fixture (no-enrichment) — formula lines survive reopen}} with {{success}} for 4724 ms
1122
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/log/tests/package?benchmark=false&ciCd=false
1123
+ CONSOLE LOG ENTRY: Package testing: Started {{Publishing}} {{assertPublishedShape round-trip on Spectronaut Candidates fixture (with-enrichment); cross-DF subscription re-established on reopen}}
1124
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/help/visualize/viewers/scatter-plot.md
1125
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/groups/ca1e672e-e3be-40e0-b79b-8546b8bf62e6?include=children.child%2C%2Cparents.parent%2C
1126
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/groups?include=children.child%2C%2Cparents.parent%2C
1127
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/spaces?
1128
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/spaces?
1129
+ CONSOLE LOG REQUEST: 404, http://localhost:8080/api/spaces/54797ce0-6fc0-11f1-e3e2-850f78638638/subspace?name=Proteomics-Review-pub-roundtrip-t2-1783864958635
1130
+ CONSOLE LOG ENTRY: Failed to load resource: the server responded with a status of 404 (Not Found)
1131
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/spaces/54797ce0-6fc0-11f1-e3e2-850f78638638/subspaces?link=false
1132
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/help/datagrok/datagrok.md
1133
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/help/visualize/viewers/scatter-plot.md
1134
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/help/visualize/viewers/bar-chart.md
1135
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/help/visualize/viewers/img/bar-chart-relative-values-thumb.png
1136
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/help/visualize/viewers/img/bar-chart-dates-thumb.png
1137
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/tables?
1138
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/tables?
1139
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/tables?
1140
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/tables?
1141
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/help/datagrok/concepts/table.md
1142
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/views?
1143
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/views?
1144
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/projects?include=relations.entity%2C&saveRelations=true
1145
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/spaces/5773d120-6fc0-11f1-ca3c-fb3ec0304e02/entities/57911d20-6fc0-11f1-b081-1f7f6ae584d8?link=false
1146
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/privileges/permissions/user
1147
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/privileges/permissions/?entityId=57911d20-6fc0-11f1-b081-1f7f6ae584d8&all=false&&
1148
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/privileges/permissions/?entityId=5773d120-6fc0-11f1-ca3c-fb3ec0304e02&all=false&&
1149
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/privileges/permissions/?entityId=54797ce0-6fc0-11f1-e3e2-850f78638638&all=false&&
1150
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/projects/57911d20-6fc0-11f1-b081-1f7f6ae584d8?include=relations.entity%2C
1151
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/projects/57911d20-6fc0-11f1-b081-1f7f6ae584d8?
1152
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/tables/57911d20-6fc0-11f1-8c48-83bf4b0d14c5/data?
1153
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/tables/5795b100-6fc0-11f1-f29c-093f96524ff5/data?
1154
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/help/datagrok/datagrok.md
1155
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/help/visualize/viewers/scatter-plot.md
1156
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/help/visualize/viewers/bar-chart.md
1157
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/help/visualize/viewers/scatter-plot.md
1158
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/projects/57911d20-6fc0-11f1-b081-1f7f6ae584d8?include=relations.entity%2C
1159
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/projects/57911d20-6fc0-11f1-b081-1f7f6ae584d8?
1160
+ CONSOLE LOG REQUEST: 304, http://localhost:8080/api/tables/57911d20-6fc0-11f1-8c48-83bf4b0d14c5/data?
1161
+ CONSOLE LOG REQUEST: 304, http://localhost:8080/api/tables/5795b100-6fc0-11f1-f29c-093f96524ff5/data?
1162
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/help/datagrok/datagrok.md
1163
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/projects/57911d20-6fc0-11f1-b081-1f7f6ae584d8?include=relations.entity%2C
1164
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/spaces?
1165
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/spaces/54797ce0-6fc0-11f1-e3e2-850f78638638/children?types=Project&includeLinked=false
1166
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/spaces/5773d120-6fc0-11f1-ca3c-fb3ec0304e02?
1167
+ CONSOLE LOG ENTRY: Package testing: Finished {{Publishing}} {{assertPublishedShape round-trip on Spectronaut Candidates fixture (with-enrichment); cross-DF subscription re-established on reopen}} with {{success}} for 6365 ms
1168
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/log/tests/package?benchmark=false&ciCd=false
1169
+ CONSOLE LOG ENTRY: Package testing: Started {{Publishing}} {{workspace restore (Step 10) brings back BOTH the protein and enrichment views}}
1170
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/groups/ca1e672e-e3be-40e0-b79b-8546b8bf62e6?include=children.child%2C%2Cparents.parent%2C
1171
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/groups?include=children.child%2C%2Cparents.parent%2C
1172
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/spaces?
1173
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/spaces?
1174
+ CONSOLE LOG REQUEST: 404, http://localhost:8080/api/spaces/54797ce0-6fc0-11f1-e3e2-850f78638638/subspace?name=Proteomics-Review-pub-roundtrip-restore-1783864964990
1175
+ CONSOLE LOG ENTRY: Failed to load resource: the server responded with a status of 404 (Not Found)
1176
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/spaces/54797ce0-6fc0-11f1-e3e2-850f78638638/subspaces?link=false
1177
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/help/visualize/viewers/scatter-plot.md
1178
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/help/visualize/viewers/bar-chart.md
1179
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/tables?
1180
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/tables?
1181
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/tables?
1182
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/tables?
1183
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/views?
1184
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/views?
1185
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/projects?include=relations.entity%2C&saveRelations=true
1186
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/spaces/5b40deb0-6fc0-11f1-b667-0319fa476217/entities/5b5b92a0-6fc0-11f1-f0c0-cd659a63d5f4?link=false
1187
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/privileges/permissions/user
1188
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/privileges/permissions/?entityId=5b5b92a0-6fc0-11f1-f0c0-cd659a63d5f4&all=false&&
1189
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/privileges/permissions/?entityId=5b40deb0-6fc0-11f1-b667-0319fa476217&all=false&&
1190
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/privileges/permissions/?entityId=54797ce0-6fc0-11f1-e3e2-850f78638638&all=false&&
1191
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/help/visualize/viewers/scatter-plot.md
1192
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/help/visualize/viewers/scatter-plot.md
1193
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/projects/5b5b92a0-6fc0-11f1-f0c0-cd659a63d5f4?include=relations.entity%2C
1194
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/help/datagrok/datagrok.md
1195
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/spaces?
1196
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/spaces/54797ce0-6fc0-11f1-e3e2-850f78638638/children?types=Project&includeLinked=false
1197
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/spaces/5b40deb0-6fc0-11f1-b667-0319fa476217?
1198
+ CONSOLE LOG ENTRY: Package testing: Finished {{Publishing}} {{workspace restore (Step 10) brings back BOTH the protein and enrichment views}} with {{success}} for 3721 ms
1199
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/log/tests/package?benchmark=false&ciCd=false
1200
+ CONSOLE LOG ENTRY: Package testing: Started {{Publishing}} {{source mutation after publish leaves clone unchanged (Pitfall 1)}}
1201
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/groups/ca1e672e-e3be-40e0-b79b-8546b8bf62e6?include=children.child%2C%2Cparents.parent%2C
1202
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/groups?include=children.child%2C%2Cparents.parent%2C
1203
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/spaces?
1204
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/spaces?
1205
+ CONSOLE LOG ENTRY: Failed to load resource: the server responded with a status of 404 (Not Found)
1206
+ CONSOLE LOG REQUEST: 404, http://localhost:8080/api/spaces/54797ce0-6fc0-11f1-e3e2-850f78638638/subspace?name=Proteomics-Review-pub-roundtrip-t3-1783864968366
1207
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/spaces/54797ce0-6fc0-11f1-e3e2-850f78638638/subspaces?link=false
1208
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/help/visualize/viewers/scatter-plot.md
1209
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/help/datagrok/datagrok.md
1210
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/tables?
1211
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/tables?
1212
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/views?
1213
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/projects?include=relations.entity%2C&saveRelations=true
1214
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/spaces/5d671a10-6fc0-11f1-d6b0-493f34f1059a/entities/5d821c20-6fc0-11f1-e8fc-db4789c8df7e?link=false
1215
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/privileges/permissions/user
1216
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/privileges/permissions/?entityId=5d821c20-6fc0-11f1-e8fc-db4789c8df7e&all=false&&
1217
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/privileges/permissions/?entityId=5d671a10-6fc0-11f1-d6b0-493f34f1059a&all=false&&
1218
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/privileges/permissions/?entityId=54797ce0-6fc0-11f1-e3e2-850f78638638&all=false&&
1219
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/projects/5d821c20-6fc0-11f1-e8fc-db4789c8df7e?include=relations.entity%2C
1220
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/projects/5d821c20-6fc0-11f1-e8fc-db4789c8df7e?
1221
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/tables/5d821c20-6fc0-11f1-f5d9-a1a6d665298f/data?
1222
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/help/visualize/viewers/scatter-plot.md
1223
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/projects/5d821c20-6fc0-11f1-e8fc-db4789c8df7e?include=relations.entity%2C
1224
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/projects/5d821c20-6fc0-11f1-e8fc-db4789c8df7e?
1225
+ CONSOLE LOG REQUEST: 304, http://localhost:8080/api/tables/5d821c20-6fc0-11f1-f5d9-a1a6d665298f/data?
1226
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/projects/5d821c20-6fc0-11f1-e8fc-db4789c8df7e?include=relations.entity%2C
1227
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/projects/5d821c20-6fc0-11f1-e8fc-db4789c8df7e?
1228
+ CONSOLE LOG REQUEST: 304, http://localhost:8080/api/tables/5d821c20-6fc0-11f1-f5d9-a1a6d665298f/data?
1229
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/projects/5d821c20-6fc0-11f1-e8fc-db4789c8df7e?include=relations.entity%2C
1230
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/spaces?
1231
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/spaces/54797ce0-6fc0-11f1-e3e2-850f78638638/children?types=Project&includeLinked=false
1232
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/help/datagrok/datagrok.md
1233
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/spaces/5d671a10-6fc0-11f1-d6b0-493f34f1059a?
1234
+ CONSOLE LOG ENTRY: Package testing: Finished {{Publishing}} {{source mutation after publish leaves clone unchanged (Pitfall 1)}} with {{success}} for 4135 ms
1235
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/log/tests/package?benchmark=false&ciCd=false
1236
+ CONSOLE LOG ENTRY: Package testing: Started {{Publishing}} {{republish creates v2 with bidirectional superseded_by + supersedes pointers (W-8 dual-write)}}
1237
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/groups/ca1e672e-e3be-40e0-b79b-8546b8bf62e6?include=children.child%2C%2Cparents.parent%2C
1238
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/groups?include=children.child%2C%2Cparents.parent%2C
1239
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/spaces?
1240
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/spaces?
1241
+ CONSOLE LOG REQUEST: 404, http://localhost:8080/api/spaces/54797ce0-6fc0-11f1-e3e2-850f78638638/subspace?name=Proteomics-Review-pub-roundtrip-t4-1783864972552
1242
+ CONSOLE LOG ENTRY: Failed to load resource: the server responded with a status of 404 (Not Found)
1243
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/spaces/54797ce0-6fc0-11f1-e3e2-850f78638638/subspaces?link=false
1244
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/help/visualize/viewers/scatter-plot.md
1245
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/tables?
1246
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/tables?
1247
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/views?
1248
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/projects?include=relations.entity%2C&saveRelations=true
1249
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/spaces/5fe141d0-6fc0-11f1-ce52-03f94d9b3769/entities/6002ac80-6fc0-11f1-e320-4fd1b6b015c6?link=false
1250
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/privileges/permissions/user
1251
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/privileges/permissions/?entityId=6002ac80-6fc0-11f1-e320-4fd1b6b015c6&all=false&&
1252
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/privileges/permissions/?entityId=5fe141d0-6fc0-11f1-ce52-03f94d9b3769&all=false&&
1253
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/privileges/permissions/?entityId=54797ce0-6fc0-11f1-e3e2-850f78638638&all=false&&
1254
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/projects/6002ac80-6fc0-11f1-e320-4fd1b6b015c6?include=relations.entity%2C
1255
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/projects/6002ac80-6fc0-11f1-e320-4fd1b6b015c6?
1256
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/tables/6002d390-6fc0-11f1-cbbe-c35a3bf0c45a/data?
1257
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/spaces?
1258
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/spaces?
1259
+ CONSOLE LOG REQUEST: 404, http://localhost:8080/api/spaces/54797ce0-6fc0-11f1-e3e2-850f78638638/subspace?name=Proteomics-Review-pub-roundtrip-t4-1783864972552
1260
+ CONSOLE LOG ENTRY: Failed to load resource: the server responded with a status of 404 (Not Found)
1261
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/spaces/54797ce0-6fc0-11f1-e3e2-850f78638638/subspaces?link=false
1262
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/spaces/54797ce0-6fc0-11f1-e3e2-850f78638638/children?types=Project&includeLinked=false
1263
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/help/datagrok/datagrok.md
1264
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/help/visualize/viewers/scatter-plot.md
1265
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/tables?
1266
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/tables?
1267
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/views?
1268
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/projects?include=relations.entity%2C&saveRelations=true
1269
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/spaces/5fe141d0-6fc0-11f1-ce52-03f94d9b3769/entities/618be490-6fc0-11f1-c845-b74354cbd3b7?link=false
1270
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/privileges/permissions/user
1271
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/privileges/permissions/?entityId=618be490-6fc0-11f1-c845-b74354cbd3b7&all=false&&
1272
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/privileges/permissions/?entityId=5fe141d0-6fc0-11f1-ce52-03f94d9b3769&all=false&&
1273
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/privileges/permissions/?entityId=54797ce0-6fc0-11f1-e3e2-850f78638638&all=false&&
1274
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/projects/618be490-6fc0-11f1-c845-b74354cbd3b7?include=relations.entity%2C
1275
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/projects/618be490-6fc0-11f1-c845-b74354cbd3b7?
1276
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/tables/618be490-6fc0-11f1-d27d-b3540986802f/data?
1277
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/projects/6002ac80-6fc0-11f1-e320-4fd1b6b015c6?include=relations.entity%2C
1278
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/projects?include=relations.entity%2C&saveRelations=true
1279
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/projects/6002ac80-6fc0-11f1-e320-4fd1b6b015c6?include=relations.entity%2C
1280
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/projects/6002ac80-6fc0-11f1-e320-4fd1b6b015c6?
1281
+ CONSOLE LOG REQUEST: 304, http://localhost:8080/api/tables/6002d390-6fc0-11f1-cbbe-c35a3bf0c45a/data?
1282
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/tables?
1283
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/help/datagrok/datagrok.md
1284
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/tables?
1285
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/projects?include=relations.entity%2C&saveRelations=true
1286
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/help/visualize/viewers/scatter-plot.md
1287
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/projects/618be490-6fc0-11f1-c845-b74354cbd3b7?include=relations.entity%2C
1288
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/projects/618be490-6fc0-11f1-c845-b74354cbd3b7?
1289
+ CONSOLE LOG REQUEST: 304, http://localhost:8080/api/tables/618be490-6fc0-11f1-d27d-b3540986802f/data?
1290
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/projects/6002ac80-6fc0-11f1-e320-4fd1b6b015c6?include=relations.entity%2C
1291
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/projects/6002ac80-6fc0-11f1-e320-4fd1b6b015c6?
1292
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/tables/6002d390-6fc0-11f1-cbbe-c35a3bf0c45a/data?
1293
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/projects/6002ac80-6fc0-11f1-e320-4fd1b6b015c6?include=relations.entity%2C
1294
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/projects/618be490-6fc0-11f1-c845-b74354cbd3b7?include=relations.entity%2C
1295
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/projects/6002ac80-6fc0-11f1-e320-4fd1b6b015c6?include=relations.entity%2C
1296
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/help/datagrok/datagrok.md
1297
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/spaces?
1298
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/spaces/54797ce0-6fc0-11f1-e3e2-850f78638638/children?types=Project&includeLinked=false
1299
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/spaces/5fe141d0-6fc0-11f1-ce52-03f94d9b3769?
1300
+ CONSOLE LOG ENTRY: Package testing: Finished {{Publishing}} {{republish creates v2 with bidirectional superseded_by + supersedes pointers (W-8 dual-write)}} with {{success}} for 8532 ms
1301
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/log/tests/package?benchmark=false&ciCd=false
1302
+ CONSOLE LOG ENTRY: Package testing: Started {{Publishing}} {{verify-and-rollback rejects Edit-inherited grant with exact D-03 error string}}
1303
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/spaces?
1304
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/privileges/permissions/user
1305
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/spaces?
1306
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/spaces?
1307
+ CONSOLE LOG REQUEST: 404, http://localhost:8080/api/spaces/64c6c440-6fc0-11f1-fc02-b98979bfcc80/subspace?name=Proteomics-Review-pub-roundtrip-t5-1783864981607
1308
+ CONSOLE LOG ENTRY: Failed to load resource: the server responded with a status of 404 (Not Found)
1309
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/spaces/64c6c440-6fc0-11f1-fc02-b98979bfcc80/subspaces?link=false
1310
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/help/visualize/viewers/scatter-plot.md
1311
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/tables?
1312
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/tables?
1313
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/views?
1314
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/projects?include=relations.entity%2C&saveRelations=true
1315
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/spaces/6521dc90-6fc0-11f1-b126-3949fc503e38/entities/653df010-6fc0-11f1-d6c7-719e30c43239?link=false
1316
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/privileges/permissions/user
1317
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/privileges/permissions/?entityId=653df010-6fc0-11f1-d6c7-719e30c43239&all=false&&
1318
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/privileges/permissions/?entityId=6521dc90-6fc0-11f1-b126-3949fc503e38&all=false&&
1319
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/privileges/permissions/?entityId=64c6c440-6fc0-11f1-fc02-b98979bfcc80&all=false&&
1320
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/projects/653df010-6fc0-11f1-d6c7-719e30c43239?include=relations.entity%2C
1321
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/projects?text=name%2520like%2520%2522Proteomics-Review-%2525%2522&include=relations.entity%2C
1322
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/spaces/64c6c440-6fc0-11f1-fc02-b98979bfcc80?
1323
+ CONSOLE LOG ENTRY: Package testing: Finished {{Publishing}} {{verify-and-rollback rejects Edit-inherited grant with exact D-03 error string}} with {{success}} for 2380 ms
1324
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/log/tests/package?benchmark=false&ciCd=false
1325
+ CONSOLE LOG ENTRY: Package testing: Started {{SPC}} skipped {{1}}
1326
+ CONSOLE LOG ENTRY: Package testing: Started {{SPC}} {{SPC:spike_formula_line_dashed_on_datetime}}
1327
+ CONSOLE LOG ENTRY: [SPC spike] outcome
1328
+ OUTCOME: PASS
1329
+ Observation: items[0].style=dashed
1330
+ Test: SPC:spike_formula_line_dashed_on_datetime
1331
+ Timestamp: 2026-07-12T14:03:03.650Z
1332
+
1333
+ CONSOLE LOG ENTRY: Package testing: Finished {{SPC}} {{SPC:spike_formula_line_dashed_on_datetime}} with {{success}} for 64 ms
1334
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/log/tests/package?benchmark=false&ciCd=false
1335
+ CONSOLE LOG ENTRY: Package testing: Started {{SPC}} {{SPC:spike_three_lines_ucl_cl_lcl}}
1336
+ CONSOLE LOG ENTRY: [SPC spike] outcome
1337
+ ## Secondary observation: three-lines UCL/CL/LCL
1338
+ Added: 3/3
1339
+ DashedHonored: 2
1340
+ Test: SPC:spike_three_lines_ucl_cl_lcl
1341
+ Timestamp: 2026-07-12T14:03:03.731Z
1342
+
1343
+ CONSOLE LOG ENTRY: Package testing: Finished {{SPC}} {{SPC:spike_three_lines_ucl_cl_lcl}} with {{success}} for 69 ms
1344
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/log/tests/package?benchmark=false&ciCd=false
1345
+ CONSOLE LOG ENTRY: Package testing: Started {{SPC}} {{SPC:median_intensity}}
1346
+ CONSOLE LOG ENTRY: Package testing: Finished {{SPC}} {{SPC:median_intensity}} with {{success}} for 1 ms
1347
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/connectors/connections/System.AppData/file/Proteomics%2Fspike%2Fspike-result.md?&
1348
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/log/tests/package?benchmark=false&ciCd=false
1349
+ CONSOLE LOG ENTRY: Package testing: Started {{SPC}} {{SPC:missing_pct}}
1350
+ CONSOLE LOG ENTRY: Package testing: Finished {{SPC}} {{SPC:missing_pct}} with {{success}} for 2 ms
1351
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/log/tests/package?benchmark=false&ciCd=false
1352
+ CONSOLE LOG ENTRY: Package testing: Started {{SPC}} {{SPC:control_corr}}
1353
+ CONSOLE LOG ENTRY: Package testing: Finished {{SPC}} {{SPC:control_corr}} with {{success}} for 2 ms
1354
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/log/tests/package?benchmark=false&ciCd=false
1355
+ CONSOLE LOG ENTRY: Package testing: Started {{SPC}} {{SPC:protein_count}}
1356
+ CONSOLE LOG ENTRY: Package testing: Finished {{SPC}} {{SPC:protein_count}} with {{success}} for 4 ms
1357
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/log/tests/package?benchmark=false&ciCd=false
1358
+ CONSOLE LOG ENTRY: Package testing: Started {{SPC}} {{SPC:nelson_default}}
1359
+ CONSOLE LOG ENTRY: Package testing: Finished {{SPC}} {{SPC:nelson_default}} with {{success}} for 3 ms
1360
+ CONSOLE LOG ENTRY: Package testing: Started {{SPC}} {{SPC:nelson_rule_1_3sigma}}
1361
+ CONSOLE LOG ENTRY: Package testing: Finished {{SPC}} {{SPC:nelson_rule_1_3sigma}} with {{success}} for 3 ms
1362
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/log/tests/package?benchmark=false&ciCd=false
1363
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/log/tests/package?benchmark=false&ciCd=false
1364
+ CONSOLE LOG ENTRY: Package testing: Started {{SPC}} {{SPC:nelson_rule_5_2of3}}
1365
+ CONSOLE LOG ENTRY: Package testing: Finished {{SPC}} {{SPC:nelson_rule_5_2of3}} with {{success}} for 1 ms
1366
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/log/tests/package?benchmark=false&ciCd=false
1367
+ CONSOLE LOG ENTRY: Package testing: Started {{SPC}} {{SPC:false_alarm_rate}}
1368
+ CONSOLE LOG ENTRY: Package testing: Finished {{SPC}} {{SPC:false_alarm_rate}} with {{success}} for 7 ms
1369
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/log/tests/package?benchmark=false&ciCd=false
1370
+ CONSOLE LOG ENTRY: Package testing: Started {{SPC}} {{SPC:status_tags}}
1371
+ CONSOLE LOG ENTRY: Package testing: Finished {{SPC}} {{SPC:status_tags}} with {{success}} for 4 ms
1372
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/log/tests/package?benchmark=false&ciCd=false
1373
+ CONSOLE LOG ENTRY: Package testing: Started {{SPC}} {{SPC:classification}}
1374
+ CONSOLE LOG ENTRY: Package testing: Finished {{SPC}} {{SPC:classification}} with {{success}} for 1 ms
1375
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/log/tests/package?benchmark=false&ciCd=false
1376
+ CONSOLE LOG ENTRY: Package testing: Started {{SPC}} {{SPC:baseline_outlier_removal}}
1377
+ CONSOLE LOG ENTRY: Package testing: Finished {{SPC}} {{SPC:baseline_outlier_removal}} with {{success}} for 3 ms
1378
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/log/tests/package?benchmark=false&ciCd=false
1379
+ CONSOLE LOG ENTRY: Package testing: Started {{SPC}} {{SPC:baseline_iteration_cap}}
1380
+ CONSOLE LOG ENTRY: Package testing: Finished {{SPC}} {{SPC:baseline_iteration_cap}} with {{success}} for 4 ms
1381
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/log/tests/package?benchmark=false&ciCd=false
1382
+ CONSOLE LOG ENTRY: Package testing: Started {{SPC}} {{SPC:baseline_roundtrip}}
1383
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/connectors/connections/System.AppData/file/Proteomics%2Fspike%2Fspike-result.md?&
1384
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/connectors/connections/System.AppData/file/Proteomics%2Fspc-test%2F0aaab55f-bb86-4635-aa77-8c1193831837%2Fbaseline-Q-rt.json?&
1385
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/connectors/connections/System.AppData/file/Proteomics%2Fspc-test%2F0aaab55f-bb86-4635-aa77-8c1193831837%2Fbaseline-Q-rt.json?&
1386
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/connectors/connections/System.AppData/file/Proteomics%2Fspc-test%2F0aaab55f-bb86-4635-aa77-8c1193831837%2Fbaseline-Q-rt.json?&&flag=8
1387
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/connectors/connections/System.AppData/delete_files/
1388
+ CONSOLE LOG ENTRY: Package testing: Finished {{SPC}} {{SPC:baseline_roundtrip}} with {{success}} for 157 ms
1389
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/log/tests/package?benchmark=false&ciCd=false
1390
+ CONSOLE LOG ENTRY: Package testing: Started {{SPC}} {{SPC:baseline_rebuild_overwrites}}
1391
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/connectors/connections/System.AppData/file/Proteomics%2Fspc-test%2Fc2c5b625-0bf1-4537-a7e0-2b3ca81f6d7e%2Fbaseline-Q-X.json?&
1392
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/connectors/connections/System.AppData/file/Proteomics%2Fspc-test%2Fc2c5b625-0bf1-4537-a7e0-2b3ca81f6d7e%2Fbaseline-Q-X.json?&
1393
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/connectors/connections/System.AppData/file/Proteomics%2Fspc-test%2Fc2c5b625-0bf1-4537-a7e0-2b3ca81f6d7e%2Fbaseline-Q-X.json?&
1394
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/connectors/connections/System.AppData/file/Proteomics%2Fspc-test%2Fc2c5b625-0bf1-4537-a7e0-2b3ca81f6d7e%2Fbaseline-Q-X.json?&&flag=11
1395
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/connectors/connections/System.AppData/delete_files/
1396
+ CONSOLE LOG ENTRY: Package testing: Finished {{SPC}} {{SPC:baseline_rebuild_overwrites}} with {{success}} for 144 ms
1397
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/log/tests/package?benchmark=false&ciCd=false
1398
+ CONSOLE LOG ENTRY: Package testing: Started {{SPC}} {{SPC:rule_toggle_per_instrument}}
1399
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/connectors/connections/System.AppData/file/Proteomics%2Fspc-test%2F43a398c3-c664-4317-8df1-319d192dd0e8%2Fbaseline-Q-rt.json?&
1400
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/connectors/connections/System.AppData/file/Proteomics%2Fspc-test%2F43a398c3-c664-4317-8df1-319d192dd0e8%2Fbaseline-Q-rt.json?&
1401
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/connectors/connections/System.AppData/file/Proteomics%2Fspc-test%2F43a398c3-c664-4317-8df1-319d192dd0e8%2Fbaseline-Q-rt.json?&&flag=13
1402
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/connectors/connections/System.AppData/delete_files/
1403
+ CONSOLE LOG ENTRY: Package testing: Finished {{SPC}} {{SPC:rule_toggle_per_instrument}} with {{success}} for 96 ms
1404
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/log/tests/package?benchmark=false&ciCd=false
1405
+ CONSOLE LOG ENTRY: Package testing: Started {{SPC}} {{SPC:run_meta_helpers}}
1406
+ CONSOLE LOG ENTRY: Package testing: Finished {{SPC}} {{SPC:run_meta_helpers}} with {{success}} for 1 ms
1407
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/log/tests/package?benchmark=false&ciCd=false
1408
+ CONSOLE LOG ENTRY: Package testing: Started {{SPC}} {{SPC:annotation_dialog_persists_run_meta}}
1409
+ CONSOLE LOG ENTRY: Package testing: Finished {{SPC}} {{SPC:annotation_dialog_persists_run_meta}} with {{success}} for 1 ms
1410
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/log/tests/package?benchmark=false&ciCd=false
1411
+ CONSOLE LOG ENTRY: Package testing: Started {{SPC}} {{SPC:spectronaut_seed}}
1412
+ CONSOLE LOG ENTRY: Package testing: Finished {{SPC}} {{SPC:spectronaut_seed}} with {{success}} for 3 ms
1413
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/log/tests/package?benchmark=false&ciCd=false
1414
+ CONSOLE LOG ENTRY: Package testing: Skipped {{SPC}} {{SPC:backfill_ordering}}
1415
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/log/tests/package?benchmark=false&ciCd=false
1416
+ CONSOLE LOG ENTRY: Package testing: Started {{SPC}} {{SPC:candidates_refuse}}
1417
+ CONSOLE LOG ENTRY: Package testing: Finished {{SPC}} {{SPC:candidates_refuse}} with {{success}} for 1 ms
1418
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/log/tests/package?benchmark=false&ciCd=false
1419
+ CONSOLE LOG ENTRY: Package testing: Started {{SPC}} {{SPC:idempotent_upsert}}
1420
+ CONSOLE LOG REQUEST: 404, http://localhost:8080/api/connectors/connections/System.AppData/file/Proteomics%2Fspc-test%2F59239ea5-bafa-4ec6-b177-d6a81db7b894%2Fruns.csv?&
1421
+ CONSOLE LOG ENTRY: Failed to load resource: the server responded with a status of 404 (Not Found)
1422
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/connectors/connections/System.AppData/file/Proteomics%2Fspc-test%2F59239ea5-bafa-4ec6-b177-d6a81db7b894%2Fruns.csv?&
1423
+ CONSOLE LOG REQUEST: 404, http://localhost:8080/api/connectors/connections/System.AppData/file/Proteomics%2Fspc-test%2F59239ea5-bafa-4ec6-b177-d6a81db7b894%2Fruns-meta.json?&
1424
+ CONSOLE LOG ENTRY: Failed to load resource: the server responded with a status of 404 (Not Found)
1425
+ CONSOLE LOG REQUEST: 404, http://localhost:8080/api/connectors/connections/System.AppData/file/Proteomics%2Fspc-test%2F59239ea5-bafa-4ec6-b177-d6a81db7b894%2Fruns-meta.json?&
1426
+ CONSOLE LOG ENTRY: Failed to load resource: the server responded with a status of 404 (Not Found)
1427
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/connectors/connections/System.AppData/file/Proteomics%2Fspc-test%2F59239ea5-bafa-4ec6-b177-d6a81db7b894%2Fruns-meta.json?&
1428
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/connectors/connections/System.AppData/file/Proteomics%2Fspc-test%2F59239ea5-bafa-4ec6-b177-d6a81db7b894%2Fruns.csv?&
1429
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/connectors/connections/System.AppData/file/Proteomics%2Fspc-test%2F59239ea5-bafa-4ec6-b177-d6a81db7b894%2Fruns.csv?&&flag=16
1430
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/connectors/connections/System.AppData/file/Proteomics%2Fspc-test%2F59239ea5-bafa-4ec6-b177-d6a81db7b894%2Fruns.csv?&
1431
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/connectors/connections/System.AppData/file/Proteomics%2Fspc-test%2F59239ea5-bafa-4ec6-b177-d6a81db7b894%2Fruns-meta.json?&
1432
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/connectors/connections/System.AppData/file/Proteomics%2Fspc-test%2F59239ea5-bafa-4ec6-b177-d6a81db7b894%2Fruns-meta.json?&&flag=17
1433
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/connectors/connections/System.AppData/file/Proteomics%2Fspc-test%2F59239ea5-bafa-4ec6-b177-d6a81db7b894%2Fruns.csv?&
1434
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/connectors/connections/System.AppData/file/Proteomics%2Fspc-test%2F59239ea5-bafa-4ec6-b177-d6a81db7b894%2Fruns.csv?&&flag=17
1435
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/connectors/connections/System.AppData/delete_files/
1436
+ CONSOLE LOG ENTRY: Package testing: Finished {{SPC}} {{SPC:idempotent_upsert}} with {{success}} for 250 ms
1437
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/log/tests/package?benchmark=false&ciCd=false
1438
+ CONSOLE LOG ENTRY: Package testing: Started {{SPC}} {{SPC:storage_bounded}}
1439
+ CONSOLE LOG REQUEST: 404, http://localhost:8080/api/connectors/connections/System.AppData/file/Proteomics%2Fspc-test%2F6c5ef640-8ca8-42a9-8d04-a8a8d3fe2d22%2Fruns.csv?&
1440
+ CONSOLE LOG ENTRY: Failed to load resource: the server responded with a status of 404 (Not Found)
1441
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/connectors/connections/System.AppData/file/Proteomics%2Fspc-test%2F6c5ef640-8ca8-42a9-8d04-a8a8d3fe2d22%2Fruns.csv?&
1442
+ CONSOLE LOG REQUEST: 404, http://localhost:8080/api/connectors/connections/System.AppData/file/Proteomics%2Fspc-test%2F6c5ef640-8ca8-42a9-8d04-a8a8d3fe2d22%2Fruns-meta.json?&
1443
+ CONSOLE LOG ENTRY: Failed to load resource: the server responded with a status of 404 (Not Found)
1444
+ CONSOLE LOG REQUEST: 404, http://localhost:8080/api/connectors/connections/System.AppData/file/Proteomics%2Fspc-test%2F6c5ef640-8ca8-42a9-8d04-a8a8d3fe2d22%2Fruns-meta.json?&
1445
+ CONSOLE LOG ENTRY: Failed to load resource: the server responded with a status of 404 (Not Found)
1446
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/connectors/connections/System.AppData/file/Proteomics%2Fspc-test%2F6c5ef640-8ca8-42a9-8d04-a8a8d3fe2d22%2Fruns-meta.json?&
1447
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/connectors/connections/System.AppData/file/Proteomics%2Fspc-test%2F6c5ef640-8ca8-42a9-8d04-a8a8d3fe2d22%2Fruns.csv?&
1448
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/connectors/connections/System.AppData/file/Proteomics%2Fspc-test%2F6c5ef640-8ca8-42a9-8d04-a8a8d3fe2d22%2Fruns.csv?&&flag=20
1449
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/connectors/connections/System.AppData/file/Proteomics%2Fspc-test%2F6c5ef640-8ca8-42a9-8d04-a8a8d3fe2d22%2Fruns.csv?&
1450
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/connectors/connections/System.AppData/file/Proteomics%2Fspc-test%2F6c5ef640-8ca8-42a9-8d04-a8a8d3fe2d22%2Fruns-meta.json?&
1451
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/connectors/connections/System.AppData/file/Proteomics%2Fspc-test%2F6c5ef640-8ca8-42a9-8d04-a8a8d3fe2d22%2Fruns-meta.json?&&flag=21
1452
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/connectors/connections/System.AppData/file/Proteomics%2Fspc-test%2F6c5ef640-8ca8-42a9-8d04-a8a8d3fe2d22%2Fruns.csv?&
1453
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/connectors/connections/System.AppData/file/Proteomics%2Fspc-test%2F6c5ef640-8ca8-42a9-8d04-a8a8d3fe2d22%2Fruns.csv?&&flag=21
1454
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/connectors/connections/System.AppData/file/Proteomics%2Fspc-test%2F6c5ef640-8ca8-42a9-8d04-a8a8d3fe2d22%2Fruns.csv?&
1455
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/connectors/connections/System.AppData/file/Proteomics%2Fspc-test%2F6c5ef640-8ca8-42a9-8d04-a8a8d3fe2d22%2Fruns-meta.json?&
1456
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/connectors/connections/System.AppData/file/Proteomics%2Fspc-test%2F6c5ef640-8ca8-42a9-8d04-a8a8d3fe2d22%2Fruns-meta.json?&&flag=22
1457
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/connectors/connections/System.AppData/file/Proteomics%2Fspc-test%2F6c5ef640-8ca8-42a9-8d04-a8a8d3fe2d22%2Fruns.csv?&
1458
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/connectors/connections/System.AppData/file/Proteomics%2Fspc-test%2F6c5ef640-8ca8-42a9-8d04-a8a8d3fe2d22%2Fruns.csv?&&flag=22
1459
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/connectors/connections/System.AppData/file/Proteomics%2Fspc-test%2F6c5ef640-8ca8-42a9-8d04-a8a8d3fe2d22%2Fruns.csv?&
1460
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/connectors/connections/System.AppData/file/Proteomics%2Fspc-test%2F6c5ef640-8ca8-42a9-8d04-a8a8d3fe2d22%2Fruns-meta.json?&
1461
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/connectors/connections/System.AppData/file/Proteomics%2Fspc-test%2F6c5ef640-8ca8-42a9-8d04-a8a8d3fe2d22%2Fruns-meta.json?&&flag=23
1462
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/connectors/connections/System.AppData/file/Proteomics%2Fspc-test%2F6c5ef640-8ca8-42a9-8d04-a8a8d3fe2d22%2Fruns.csv?&
1463
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/connectors/connections/System.AppData/file/Proteomics%2Fspc-test%2F6c5ef640-8ca8-42a9-8d04-a8a8d3fe2d22%2Fruns.csv?&&flag=23
1464
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/connectors/connections/System.AppData/file/Proteomics%2Fspc-test%2F6c5ef640-8ca8-42a9-8d04-a8a8d3fe2d22%2Fruns.csv?&
1465
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/connectors/connections/System.AppData/file/Proteomics%2Fspc-test%2F6c5ef640-8ca8-42a9-8d04-a8a8d3fe2d22%2Fruns-meta.json?&
1466
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/connectors/connections/System.AppData/file/Proteomics%2Fspc-test%2F6c5ef640-8ca8-42a9-8d04-a8a8d3fe2d22%2Fruns-meta.json?&&flag=24
1467
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/connectors/connections/System.AppData/file/Proteomics%2Fspc-test%2F6c5ef640-8ca8-42a9-8d04-a8a8d3fe2d22%2Fruns.csv?&
1468
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/connectors/connections/System.AppData/file/Proteomics%2Fspc-test%2F6c5ef640-8ca8-42a9-8d04-a8a8d3fe2d22%2Fruns.csv?&&flag=24
1469
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/connectors/connections/System.AppData/file/Proteomics%2Fspc-test%2F6c5ef640-8ca8-42a9-8d04-a8a8d3fe2d22%2Fruns.csv?&
1470
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/connectors/connections/System.AppData/file/Proteomics%2Fspc-test%2F6c5ef640-8ca8-42a9-8d04-a8a8d3fe2d22%2Fruns-meta.json?&
1471
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/connectors/connections/System.AppData/file/Proteomics%2Fspc-test%2F6c5ef640-8ca8-42a9-8d04-a8a8d3fe2d22%2Fruns-meta.json?&&flag=25
1472
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/connectors/connections/System.AppData/file/Proteomics%2Fspc-test%2F6c5ef640-8ca8-42a9-8d04-a8a8d3fe2d22%2Fruns.csv?&
1473
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/connectors/connections/System.AppData/file/Proteomics%2Fspc-test%2F6c5ef640-8ca8-42a9-8d04-a8a8d3fe2d22%2Fruns.csv?&&flag=24
1474
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/connectors/connections/System.AppData/file/Proteomics%2Fspc-test%2F6c5ef640-8ca8-42a9-8d04-a8a8d3fe2d22%2Fruns.csv?&
1475
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/connectors/connections/System.AppData/file/Proteomics%2Fspc-test%2F6c5ef640-8ca8-42a9-8d04-a8a8d3fe2d22%2Fruns-meta.json?&
1476
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/connectors/connections/System.AppData/file/Proteomics%2Fspc-test%2F6c5ef640-8ca8-42a9-8d04-a8a8d3fe2d22%2Fruns-meta.json?&&flag=26
1477
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/connectors/connections/System.AppData/file/Proteomics%2Fspc-test%2F6c5ef640-8ca8-42a9-8d04-a8a8d3fe2d22%2Fruns.csv?&
1478
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/connectors/connections/System.AppData/file/Proteomics%2Fspc-test%2F6c5ef640-8ca8-42a9-8d04-a8a8d3fe2d22%2Fruns.csv?&&flag=26
1479
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/connectors/connections/System.AppData/file/Proteomics%2Fspc-test%2F6c5ef640-8ca8-42a9-8d04-a8a8d3fe2d22%2Fruns.csv?&
1480
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/connectors/connections/System.AppData/file/Proteomics%2Fspc-test%2F6c5ef640-8ca8-42a9-8d04-a8a8d3fe2d22%2Fruns-meta.json?&
1481
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/connectors/connections/System.AppData/file/Proteomics%2Fspc-test%2F6c5ef640-8ca8-42a9-8d04-a8a8d3fe2d22%2Fruns-meta.json?&&flag=27
1482
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/connectors/connections/System.AppData/file/Proteomics%2Fspc-test%2F6c5ef640-8ca8-42a9-8d04-a8a8d3fe2d22%2Fruns.csv?&
1483
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/connectors/connections/System.AppData/file/Proteomics%2Fspc-test%2F6c5ef640-8ca8-42a9-8d04-a8a8d3fe2d22%2Fruns.csv?&&flag=27
1484
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/help/datagrok/datagrok.md
1485
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/connectors/connections/System.AppData/file/Proteomics%2Fspc-test%2F6c5ef640-8ca8-42a9-8d04-a8a8d3fe2d22%2Fruns.csv?&
1486
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/connectors/connections/System.AppData/file/Proteomics%2Fspc-test%2F6c5ef640-8ca8-42a9-8d04-a8a8d3fe2d22%2Fruns-meta.json?&
1487
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/connectors/connections/System.AppData/file/Proteomics%2Fspc-test%2F6c5ef640-8ca8-42a9-8d04-a8a8d3fe2d22%2Fruns-meta.json?&&flag=28
1488
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/connectors/connections/System.AppData/file/Proteomics%2Fspc-test%2F6c5ef640-8ca8-42a9-8d04-a8a8d3fe2d22%2Fruns.csv?&
1489
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/connectors/connections/System.AppData/file/Proteomics%2Fspc-test%2F6c5ef640-8ca8-42a9-8d04-a8a8d3fe2d22%2Fruns.csv?&&flag=28
1490
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/connectors/connections/System.AppData/file/Proteomics%2Fspc-test%2F6c5ef640-8ca8-42a9-8d04-a8a8d3fe2d22%2Fruns.csv?&
1491
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/connectors/connections/System.AppData/file/Proteomics%2Fspc-test%2F6c5ef640-8ca8-42a9-8d04-a8a8d3fe2d22%2Fruns-meta.json?&
1492
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/connectors/connections/System.AppData/file/Proteomics%2Fspc-test%2F6c5ef640-8ca8-42a9-8d04-a8a8d3fe2d22%2Fruns-meta.json?&&flag=29
1493
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/connectors/connections/System.AppData/file/Proteomics%2Fspc-test%2F6c5ef640-8ca8-42a9-8d04-a8a8d3fe2d22%2Fruns.csv?&
1494
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/connectors/connections/System.AppData/file/Proteomics%2Fspc-test%2F6c5ef640-8ca8-42a9-8d04-a8a8d3fe2d22%2Fruns.csv?&&flag=29
1495
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/connectors/connections/System.AppData/file/Proteomics%2Fspc-test%2F6c5ef640-8ca8-42a9-8d04-a8a8d3fe2d22%2Fruns.csv?&
1496
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/connectors/connections/System.AppData/file/Proteomics%2Fspc-test%2F6c5ef640-8ca8-42a9-8d04-a8a8d3fe2d22%2Fruns-meta.json?&
1497
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/connectors/connections/System.AppData/file/Proteomics%2Fspc-test%2F6c5ef640-8ca8-42a9-8d04-a8a8d3fe2d22%2Fruns-meta.json?&&flag=30
1498
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/connectors/connections/System.AppData/file/Proteomics%2Fspc-test%2F6c5ef640-8ca8-42a9-8d04-a8a8d3fe2d22%2Fruns.csv?&
1499
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/connectors/connections/System.AppData/file/Proteomics%2Fspc-test%2F6c5ef640-8ca8-42a9-8d04-a8a8d3fe2d22%2Fruns.csv?&&flag=27
1500
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/connectors/connections/System.AppData/file/Proteomics%2Fspc-test%2F6c5ef640-8ca8-42a9-8d04-a8a8d3fe2d22%2Fruns.csv?&
1501
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/connectors/connections/System.AppData/file/Proteomics%2Fspc-test%2F6c5ef640-8ca8-42a9-8d04-a8a8d3fe2d22%2Fruns-meta.json?&
1502
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/connectors/connections/System.AppData/file/Proteomics%2Fspc-test%2F6c5ef640-8ca8-42a9-8d04-a8a8d3fe2d22%2Fruns-meta.json?&&flag=31
1503
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/connectors/connections/System.AppData/file/Proteomics%2Fspc-test%2F6c5ef640-8ca8-42a9-8d04-a8a8d3fe2d22%2Fruns.csv?&
1504
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/connectors/connections/System.AppData/file/Proteomics%2Fspc-test%2F6c5ef640-8ca8-42a9-8d04-a8a8d3fe2d22%2Fruns.csv?&&flag=31
1505
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/connectors/connections/System.AppData/file/Proteomics%2Fspc-test%2F6c5ef640-8ca8-42a9-8d04-a8a8d3fe2d22%2Fruns.csv?&
1506
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/connectors/connections/System.AppData/file/Proteomics%2Fspc-test%2F6c5ef640-8ca8-42a9-8d04-a8a8d3fe2d22%2Fruns-meta.json?&
1507
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/connectors/connections/System.AppData/file/Proteomics%2Fspc-test%2F6c5ef640-8ca8-42a9-8d04-a8a8d3fe2d22%2Fruns-meta.json?&&flag=32
1508
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/connectors/connections/System.AppData/file/Proteomics%2Fspc-test%2F6c5ef640-8ca8-42a9-8d04-a8a8d3fe2d22%2Fruns.csv?&
1509
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/connectors/connections/System.AppData/file/Proteomics%2Fspc-test%2F6c5ef640-8ca8-42a9-8d04-a8a8d3fe2d22%2Fruns.csv?&&flag=32
1510
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/connectors/connections/System.AppData/file/Proteomics%2Fspc-test%2F6c5ef640-8ca8-42a9-8d04-a8a8d3fe2d22%2Fruns.csv?&
1511
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/connectors/connections/System.AppData/file/Proteomics%2Fspc-test%2F6c5ef640-8ca8-42a9-8d04-a8a8d3fe2d22%2Fruns-meta.json?&
1512
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/connectors/connections/System.AppData/file/Proteomics%2Fspc-test%2F6c5ef640-8ca8-42a9-8d04-a8a8d3fe2d22%2Fruns-meta.json?&&flag=33
1513
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/connectors/connections/System.AppData/file/Proteomics%2Fspc-test%2F6c5ef640-8ca8-42a9-8d04-a8a8d3fe2d22%2Fruns.csv?&
1514
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/connectors/connections/System.AppData/file/Proteomics%2Fspc-test%2F6c5ef640-8ca8-42a9-8d04-a8a8d3fe2d22%2Fruns.csv?&&flag=33
1515
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/connectors/connections/System.AppData/file/Proteomics%2Fspc-test%2F6c5ef640-8ca8-42a9-8d04-a8a8d3fe2d22%2Fruns.csv?&
1516
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/connectors/connections/System.AppData/file/Proteomics%2Fspc-test%2F6c5ef640-8ca8-42a9-8d04-a8a8d3fe2d22%2Fruns-meta.json?&
1517
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/connectors/connections/System.AppData/file/Proteomics%2Fspc-test%2F6c5ef640-8ca8-42a9-8d04-a8a8d3fe2d22%2Fruns-meta.json?&&flag=34
1518
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/connectors/connections/System.AppData/file/Proteomics%2Fspc-test%2F6c5ef640-8ca8-42a9-8d04-a8a8d3fe2d22%2Fruns.csv?&
1519
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/connectors/connections/System.AppData/file/Proteomics%2Fspc-test%2F6c5ef640-8ca8-42a9-8d04-a8a8d3fe2d22%2Fruns.csv?&&flag=34
1520
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/connectors/connections/System.AppData/file/Proteomics%2Fspc-test%2F6c5ef640-8ca8-42a9-8d04-a8a8d3fe2d22%2Fruns.csv?&
1521
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/connectors/connections/System.AppData/file/Proteomics%2Fspc-test%2F6c5ef640-8ca8-42a9-8d04-a8a8d3fe2d22%2Fruns-meta.json?&
1522
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/connectors/connections/System.AppData/file/Proteomics%2Fspc-test%2F6c5ef640-8ca8-42a9-8d04-a8a8d3fe2d22%2Fruns-meta.json?&&flag=35
1523
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/connectors/connections/System.AppData/file/Proteomics%2Fspc-test%2F6c5ef640-8ca8-42a9-8d04-a8a8d3fe2d22%2Fruns.csv?&
1524
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/connectors/connections/System.AppData/file/Proteomics%2Fspc-test%2F6c5ef640-8ca8-42a9-8d04-a8a8d3fe2d22%2Fruns.csv?&&flag=35
1525
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/connectors/connections/System.AppData/file/Proteomics%2Fspc-test%2F6c5ef640-8ca8-42a9-8d04-a8a8d3fe2d22%2Fruns.csv?&
1526
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/connectors/connections/System.AppData/file/Proteomics%2Fspc-test%2F6c5ef640-8ca8-42a9-8d04-a8a8d3fe2d22%2Fruns-meta.json?&
1527
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/connectors/connections/System.AppData/file/Proteomics%2Fspc-test%2F6c5ef640-8ca8-42a9-8d04-a8a8d3fe2d22%2Fruns-meta.json?&&flag=36
1528
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/connectors/connections/System.AppData/file/Proteomics%2Fspc-test%2F6c5ef640-8ca8-42a9-8d04-a8a8d3fe2d22%2Fruns.csv?&
1529
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/connectors/connections/System.AppData/file/Proteomics%2Fspc-test%2F6c5ef640-8ca8-42a9-8d04-a8a8d3fe2d22%2Fruns.csv?&&flag=32
1530
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/connectors/connections/System.AppData/file/Proteomics%2Fspc-test%2F6c5ef640-8ca8-42a9-8d04-a8a8d3fe2d22%2Fruns.csv?&
1531
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/connectors/connections/System.AppData/file/Proteomics%2Fspc-test%2F6c5ef640-8ca8-42a9-8d04-a8a8d3fe2d22%2Fruns-meta.json?&
1532
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/connectors/connections/System.AppData/file/Proteomics%2Fspc-test%2F6c5ef640-8ca8-42a9-8d04-a8a8d3fe2d22%2Fruns-meta.json?&&flag=37
1533
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/connectors/connections/System.AppData/file/Proteomics%2Fspc-test%2F6c5ef640-8ca8-42a9-8d04-a8a8d3fe2d22%2Fruns.csv?&
1534
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/connectors/connections/System.AppData/file/Proteomics%2Fspc-test%2F6c5ef640-8ca8-42a9-8d04-a8a8d3fe2d22%2Fruns.csv?&&flag=32
1535
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/connectors/connections/System.AppData/file/Proteomics%2Fspc-test%2F6c5ef640-8ca8-42a9-8d04-a8a8d3fe2d22%2Fruns.csv?&
1536
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/connectors/connections/System.AppData/file/Proteomics%2Fspc-test%2F6c5ef640-8ca8-42a9-8d04-a8a8d3fe2d22%2Fruns-meta.json?&
1537
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/connectors/connections/System.AppData/file/Proteomics%2Fspc-test%2F6c5ef640-8ca8-42a9-8d04-a8a8d3fe2d22%2Fruns-meta.json?&&flag=38
1538
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/connectors/connections/System.AppData/file/Proteomics%2Fspc-test%2F6c5ef640-8ca8-42a9-8d04-a8a8d3fe2d22%2Fruns.csv?&
1539
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/connectors/connections/System.AppData/file/Proteomics%2Fspc-test%2F6c5ef640-8ca8-42a9-8d04-a8a8d3fe2d22%2Fruns.csv?&&flag=32
1540
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/connectors/connections/System.AppData/file/Proteomics%2Fspc-test%2F6c5ef640-8ca8-42a9-8d04-a8a8d3fe2d22%2Fruns.csv?&
1541
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/connectors/connections/System.AppData/file/Proteomics%2Fspc-test%2F6c5ef640-8ca8-42a9-8d04-a8a8d3fe2d22%2Fruns-meta.json?&
1542
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/connectors/connections/System.AppData/file/Proteomics%2Fspc-test%2F6c5ef640-8ca8-42a9-8d04-a8a8d3fe2d22%2Fruns-meta.json?&&flag=39
1543
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/connectors/connections/System.AppData/file/Proteomics%2Fspc-test%2F6c5ef640-8ca8-42a9-8d04-a8a8d3fe2d22%2Fruns.csv?&
1544
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/connectors/connections/System.AppData/file/Proteomics%2Fspc-test%2F6c5ef640-8ca8-42a9-8d04-a8a8d3fe2d22%2Fruns.csv?&&flag=39
1545
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/connectors/connections/System.AppData/file/Proteomics%2Fspc-test%2F6c5ef640-8ca8-42a9-8d04-a8a8d3fe2d22%2Fruns.csv?&
1546
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/connectors/connections/System.AppData/file/Proteomics%2Fspc-test%2F6c5ef640-8ca8-42a9-8d04-a8a8d3fe2d22%2Fruns-meta.json?&
1547
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/connectors/connections/System.AppData/file/Proteomics%2Fspc-test%2F6c5ef640-8ca8-42a9-8d04-a8a8d3fe2d22%2Fruns-meta.json?&&flag=40
1548
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/connectors/connections/System.AppData/file/Proteomics%2Fspc-test%2F6c5ef640-8ca8-42a9-8d04-a8a8d3fe2d22%2Fruns.csv?&
1549
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/connectors/connections/System.AppData/file/Proteomics%2Fspc-test%2F6c5ef640-8ca8-42a9-8d04-a8a8d3fe2d22%2Fruns.csv?&&flag=40
1550
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/connectors/connections/System.AppData/file/Proteomics%2Fspc-test%2F6c5ef640-8ca8-42a9-8d04-a8a8d3fe2d22%2Fruns.csv?&
1551
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/connectors/connections/System.AppData/file/Proteomics%2Fspc-test%2F6c5ef640-8ca8-42a9-8d04-a8a8d3fe2d22%2Fruns-meta.json?&
1552
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/connectors/connections/System.AppData/file/Proteomics%2Fspc-test%2F6c5ef640-8ca8-42a9-8d04-a8a8d3fe2d22%2Fruns-meta.json?&&flag=41
1553
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/connectors/connections/System.AppData/file/Proteomics%2Fspc-test%2F6c5ef640-8ca8-42a9-8d04-a8a8d3fe2d22%2Fruns.csv?&
1554
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/connectors/connections/System.AppData/file/Proteomics%2Fspc-test%2F6c5ef640-8ca8-42a9-8d04-a8a8d3fe2d22%2Fruns.csv?&&flag=40
1555
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/connectors/connections/System.AppData/file/Proteomics%2Fspc-test%2F6c5ef640-8ca8-42a9-8d04-a8a8d3fe2d22%2Fruns.csv?&
1556
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/connectors/connections/System.AppData/file/Proteomics%2Fspc-test%2F6c5ef640-8ca8-42a9-8d04-a8a8d3fe2d22%2Fruns-meta.json?&
1557
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/connectors/connections/System.AppData/file/Proteomics%2Fspc-test%2F6c5ef640-8ca8-42a9-8d04-a8a8d3fe2d22%2Fruns-meta.json?&&flag=42
1558
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/connectors/connections/System.AppData/file/Proteomics%2Fspc-test%2F6c5ef640-8ca8-42a9-8d04-a8a8d3fe2d22%2Fruns.csv?&
1559
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/connectors/connections/System.AppData/file/Proteomics%2Fspc-test%2F6c5ef640-8ca8-42a9-8d04-a8a8d3fe2d22%2Fruns.csv?&&flag=42
1560
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/connectors/connections/System.AppData/file/Proteomics%2Fspc-test%2F6c5ef640-8ca8-42a9-8d04-a8a8d3fe2d22%2Fruns.csv?&
1561
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/connectors/connections/System.AppData/file/Proteomics%2Fspc-test%2F6c5ef640-8ca8-42a9-8d04-a8a8d3fe2d22%2Fruns-meta.json?&
1562
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/connectors/connections/System.AppData/file/Proteomics%2Fspc-test%2F6c5ef640-8ca8-42a9-8d04-a8a8d3fe2d22%2Fruns-meta.json?&&flag=43
1563
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/connectors/connections/System.AppData/file/Proteomics%2Fspc-test%2F6c5ef640-8ca8-42a9-8d04-a8a8d3fe2d22%2Fruns.csv?&
1564
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/connectors/connections/System.AppData/file/Proteomics%2Fspc-test%2F6c5ef640-8ca8-42a9-8d04-a8a8d3fe2d22%2Fruns.csv?&&flag=43
1565
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/connectors/connections/System.AppData/file/Proteomics%2Fspc-test%2F6c5ef640-8ca8-42a9-8d04-a8a8d3fe2d22%2Fruns.csv?&
1566
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/connectors/connections/System.AppData/file/Proteomics%2Fspc-test%2F6c5ef640-8ca8-42a9-8d04-a8a8d3fe2d22%2Fruns-meta.json?&
1567
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/connectors/connections/System.AppData/file/Proteomics%2Fspc-test%2F6c5ef640-8ca8-42a9-8d04-a8a8d3fe2d22%2Fruns-meta.json?&&flag=44
1568
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/connectors/connections/System.AppData/file/Proteomics%2Fspc-test%2F6c5ef640-8ca8-42a9-8d04-a8a8d3fe2d22%2Fruns.csv?&
1569
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/connectors/connections/System.AppData/file/Proteomics%2Fspc-test%2F6c5ef640-8ca8-42a9-8d04-a8a8d3fe2d22%2Fruns.csv?&&flag=40
1570
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/connectors/connections/System.AppData/file/Proteomics%2Fspc-test%2F6c5ef640-8ca8-42a9-8d04-a8a8d3fe2d22%2Fruns.csv?&
1571
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/connectors/connections/System.AppData/file/Proteomics%2Fspc-test%2F6c5ef640-8ca8-42a9-8d04-a8a8d3fe2d22%2Fruns-meta.json?&
1572
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/connectors/connections/System.AppData/file/Proteomics%2Fspc-test%2F6c5ef640-8ca8-42a9-8d04-a8a8d3fe2d22%2Fruns-meta.json?&&flag=45
1573
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/connectors/connections/System.AppData/file/Proteomics%2Fspc-test%2F6c5ef640-8ca8-42a9-8d04-a8a8d3fe2d22%2Fruns.csv?&
1574
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/connectors/connections/System.AppData/file/Proteomics%2Fspc-test%2F6c5ef640-8ca8-42a9-8d04-a8a8d3fe2d22%2Fruns.csv?&&flag=45
1575
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/connectors/connections/System.AppData/file/Proteomics%2Fspc-test%2F6c5ef640-8ca8-42a9-8d04-a8a8d3fe2d22%2Fruns.csv?&
1576
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/connectors/connections/System.AppData/file/Proteomics%2Fspc-test%2F6c5ef640-8ca8-42a9-8d04-a8a8d3fe2d22%2Fruns-meta.json?&
1577
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/connectors/connections/System.AppData/file/Proteomics%2Fspc-test%2F6c5ef640-8ca8-42a9-8d04-a8a8d3fe2d22%2Fruns-meta.json?&&flag=46
1578
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/connectors/connections/System.AppData/file/Proteomics%2Fspc-test%2F6c5ef640-8ca8-42a9-8d04-a8a8d3fe2d22%2Fruns.csv?&
1579
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/connectors/connections/System.AppData/file/Proteomics%2Fspc-test%2F6c5ef640-8ca8-42a9-8d04-a8a8d3fe2d22%2Fruns.csv?&&flag=46
1580
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/connectors/connections/System.AppData/file/Proteomics%2Fspc-test%2F6c5ef640-8ca8-42a9-8d04-a8a8d3fe2d22%2Fruns.csv?&
1581
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/connectors/connections/System.AppData/file/Proteomics%2Fspc-test%2F6c5ef640-8ca8-42a9-8d04-a8a8d3fe2d22%2Fruns-meta.json?&
1582
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/connectors/connections/System.AppData/file/Proteomics%2Fspc-test%2F6c5ef640-8ca8-42a9-8d04-a8a8d3fe2d22%2Fruns-meta.json?&&flag=47
1583
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/connectors/connections/System.AppData/file/Proteomics%2Fspc-test%2F6c5ef640-8ca8-42a9-8d04-a8a8d3fe2d22%2Fruns.csv?&
1584
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/connectors/connections/System.AppData/file/Proteomics%2Fspc-test%2F6c5ef640-8ca8-42a9-8d04-a8a8d3fe2d22%2Fruns.csv?&&flag=47
1585
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/connectors/connections/System.AppData/file/Proteomics%2Fspc-test%2F6c5ef640-8ca8-42a9-8d04-a8a8d3fe2d22%2Fruns.csv?&
1586
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/connectors/connections/System.AppData/file/Proteomics%2Fspc-test%2F6c5ef640-8ca8-42a9-8d04-a8a8d3fe2d22%2Fruns-meta.json?&
1587
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/connectors/connections/System.AppData/file/Proteomics%2Fspc-test%2F6c5ef640-8ca8-42a9-8d04-a8a8d3fe2d22%2Fruns-meta.json?&&flag=48
1588
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/connectors/connections/System.AppData/file/Proteomics%2Fspc-test%2F6c5ef640-8ca8-42a9-8d04-a8a8d3fe2d22%2Fruns.csv?&
1589
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/connectors/connections/System.AppData/file/Proteomics%2Fspc-test%2F6c5ef640-8ca8-42a9-8d04-a8a8d3fe2d22%2Fruns.csv?&&flag=47
1590
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/connectors/connections/System.AppData/file/Proteomics%2Fspc-test%2F6c5ef640-8ca8-42a9-8d04-a8a8d3fe2d22%2Fruns.csv?&
1591
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/connectors/connections/System.AppData/file/Proteomics%2Fspc-test%2F6c5ef640-8ca8-42a9-8d04-a8a8d3fe2d22%2Fruns-meta.json?&
1592
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/connectors/connections/System.AppData/file/Proteomics%2Fspc-test%2F6c5ef640-8ca8-42a9-8d04-a8a8d3fe2d22%2Fruns-meta.json?&&flag=49
1593
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/connectors/connections/System.AppData/file/Proteomics%2Fspc-test%2F6c5ef640-8ca8-42a9-8d04-a8a8d3fe2d22%2Fruns.csv?&
1594
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/connectors/connections/System.AppData/file/Proteomics%2Fspc-test%2F6c5ef640-8ca8-42a9-8d04-a8a8d3fe2d22%2Fruns.csv?&&flag=49
1595
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/connectors/connections/System.AppData/file/Proteomics%2Fspc-test%2F6c5ef640-8ca8-42a9-8d04-a8a8d3fe2d22%2Fruns.csv?&
1596
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/connectors/connections/System.AppData/file/Proteomics%2Fspc-test%2F6c5ef640-8ca8-42a9-8d04-a8a8d3fe2d22%2Fruns-meta.json?&
1597
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/connectors/connections/System.AppData/file/Proteomics%2Fspc-test%2F6c5ef640-8ca8-42a9-8d04-a8a8d3fe2d22%2Fruns-meta.json?&&flag=50
1598
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/connectors/connections/System.AppData/file/Proteomics%2Fspc-test%2F6c5ef640-8ca8-42a9-8d04-a8a8d3fe2d22%2Fruns.csv?&
1599
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/connectors/connections/System.AppData/file/Proteomics%2Fspc-test%2F6c5ef640-8ca8-42a9-8d04-a8a8d3fe2d22%2Fruns.csv?&&flag=50
1600
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/connectors/connections/System.AppData/file/Proteomics%2Fspc-test%2F6c5ef640-8ca8-42a9-8d04-a8a8d3fe2d22%2Fruns.csv?&
1601
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/connectors/connections/System.AppData/file/Proteomics%2Fspc-test%2F6c5ef640-8ca8-42a9-8d04-a8a8d3fe2d22%2Fruns-meta.json?&
1602
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/connectors/connections/System.AppData/file/Proteomics%2Fspc-test%2F6c5ef640-8ca8-42a9-8d04-a8a8d3fe2d22%2Fruns-meta.json?&&flag=51
1603
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/connectors/connections/System.AppData/file/Proteomics%2Fspc-test%2F6c5ef640-8ca8-42a9-8d04-a8a8d3fe2d22%2Fruns.csv?&
1604
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/connectors/connections/System.AppData/file/Proteomics%2Fspc-test%2F6c5ef640-8ca8-42a9-8d04-a8a8d3fe2d22%2Fruns.csv?&&flag=50
1605
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/connectors/connections/System.AppData/file/Proteomics%2Fspc-test%2F6c5ef640-8ca8-42a9-8d04-a8a8d3fe2d22%2Fruns.csv?&
1606
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/connectors/connections/System.AppData/file/Proteomics%2Fspc-test%2F6c5ef640-8ca8-42a9-8d04-a8a8d3fe2d22%2Fruns-meta.json?&
1607
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/connectors/connections/System.AppData/file/Proteomics%2Fspc-test%2F6c5ef640-8ca8-42a9-8d04-a8a8d3fe2d22%2Fruns-meta.json?&&flag=52
1608
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/connectors/connections/System.AppData/file/Proteomics%2Fspc-test%2F6c5ef640-8ca8-42a9-8d04-a8a8d3fe2d22%2Fruns.csv?&
1609
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/connectors/connections/System.AppData/file/Proteomics%2Fspc-test%2F6c5ef640-8ca8-42a9-8d04-a8a8d3fe2d22%2Fruns.csv?&&flag=52
1610
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/connectors/connections/System.AppData/file/Proteomics%2Fspc-test%2F6c5ef640-8ca8-42a9-8d04-a8a8d3fe2d22%2Fruns.csv?&
1611
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/connectors/connections/System.AppData/file/Proteomics%2Fspc-test%2F6c5ef640-8ca8-42a9-8d04-a8a8d3fe2d22%2Fruns-meta.json?&
1612
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/connectors/connections/System.AppData/file/Proteomics%2Fspc-test%2F6c5ef640-8ca8-42a9-8d04-a8a8d3fe2d22%2Fruns-meta.json?&&flag=53
1613
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/connectors/connections/System.AppData/file/Proteomics%2Fspc-test%2F6c5ef640-8ca8-42a9-8d04-a8a8d3fe2d22%2Fruns.csv?&
1614
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/connectors/connections/System.AppData/file/Proteomics%2Fspc-test%2F6c5ef640-8ca8-42a9-8d04-a8a8d3fe2d22%2Fruns.csv?&&flag=53
1615
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/connectors/connections/System.AppData/file/Proteomics%2Fspc-test%2F6c5ef640-8ca8-42a9-8d04-a8a8d3fe2d22%2Fruns.csv?&
1616
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/connectors/connections/System.AppData/file/Proteomics%2Fspc-test%2F6c5ef640-8ca8-42a9-8d04-a8a8d3fe2d22%2Fruns-meta.json?&
1617
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/connectors/connections/System.AppData/file/Proteomics%2Fspc-test%2F6c5ef640-8ca8-42a9-8d04-a8a8d3fe2d22%2Fruns-meta.json?&&flag=54
1618
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/connectors/connections/System.AppData/file/Proteomics%2Fspc-test%2F6c5ef640-8ca8-42a9-8d04-a8a8d3fe2d22%2Fruns.csv?&
1619
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/connectors/connections/System.AppData/file/Proteomics%2Fspc-test%2F6c5ef640-8ca8-42a9-8d04-a8a8d3fe2d22%2Fruns.csv?&&flag=54
1620
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/connectors/connections/System.AppData/file/Proteomics%2Fspc-test%2F6c5ef640-8ca8-42a9-8d04-a8a8d3fe2d22%2Fruns.csv?&
1621
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/connectors/connections/System.AppData/file/Proteomics%2Fspc-test%2F6c5ef640-8ca8-42a9-8d04-a8a8d3fe2d22%2Fruns-meta.json?&
1622
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/connectors/connections/System.AppData/file/Proteomics%2Fspc-test%2F6c5ef640-8ca8-42a9-8d04-a8a8d3fe2d22%2Fruns-meta.json?&&flag=55
1623
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/connectors/connections/System.AppData/file/Proteomics%2Fspc-test%2F6c5ef640-8ca8-42a9-8d04-a8a8d3fe2d22%2Fruns.csv?&
1624
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/connectors/connections/System.AppData/file/Proteomics%2Fspc-test%2F6c5ef640-8ca8-42a9-8d04-a8a8d3fe2d22%2Fruns.csv?&&flag=55
1625
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/connectors/connections/System.AppData/file/Proteomics%2Fspc-test%2F6c5ef640-8ca8-42a9-8d04-a8a8d3fe2d22%2Fruns.csv?&
1626
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/connectors/connections/System.AppData/file/Proteomics%2Fspc-test%2F6c5ef640-8ca8-42a9-8d04-a8a8d3fe2d22%2Fruns-meta.json?&
1627
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/connectors/connections/System.AppData/file/Proteomics%2Fspc-test%2F6c5ef640-8ca8-42a9-8d04-a8a8d3fe2d22%2Fruns-meta.json?&&flag=56
1628
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/connectors/connections/System.AppData/file/Proteomics%2Fspc-test%2F6c5ef640-8ca8-42a9-8d04-a8a8d3fe2d22%2Fruns.csv?&
1629
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/connectors/connections/System.AppData/file/Proteomics%2Fspc-test%2F6c5ef640-8ca8-42a9-8d04-a8a8d3fe2d22%2Fruns.csv?&&flag=56
1630
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/connectors/connections/System.AppData/file/Proteomics%2Fspc-test%2F6c5ef640-8ca8-42a9-8d04-a8a8d3fe2d22%2Fruns.csv?&
1631
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/connectors/connections/System.AppData/file/Proteomics%2Fspc-test%2F6c5ef640-8ca8-42a9-8d04-a8a8d3fe2d22%2Fruns-meta.json?&
1632
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/connectors/connections/System.AppData/file/Proteomics%2Fspc-test%2F6c5ef640-8ca8-42a9-8d04-a8a8d3fe2d22%2Fruns-meta.json?&&flag=57
1633
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/connectors/connections/System.AppData/file/Proteomics%2Fspc-test%2F6c5ef640-8ca8-42a9-8d04-a8a8d3fe2d22%2Fruns.csv?&
1634
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/connectors/connections/System.AppData/file/Proteomics%2Fspc-test%2F6c5ef640-8ca8-42a9-8d04-a8a8d3fe2d22%2Fruns.csv?&&flag=55
1635
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/connectors/connections/System.AppData/file/Proteomics%2Fspc-test%2F6c5ef640-8ca8-42a9-8d04-a8a8d3fe2d22%2Fruns.csv?&
1636
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/connectors/connections/System.AppData/file/Proteomics%2Fspc-test%2F6c5ef640-8ca8-42a9-8d04-a8a8d3fe2d22%2Fruns-meta.json?&
1637
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/connectors/connections/System.AppData/file/Proteomics%2Fspc-test%2F6c5ef640-8ca8-42a9-8d04-a8a8d3fe2d22%2Fruns-meta.json?&&flag=58
1638
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/connectors/connections/System.AppData/file/Proteomics%2Fspc-test%2F6c5ef640-8ca8-42a9-8d04-a8a8d3fe2d22%2Fruns.csv?&
1639
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/connectors/connections/System.AppData/file/Proteomics%2Fspc-test%2F6c5ef640-8ca8-42a9-8d04-a8a8d3fe2d22%2Fruns.csv?&&flag=58
1640
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/connectors/connections/System.AppData/file/Proteomics%2Fspc-test%2F6c5ef640-8ca8-42a9-8d04-a8a8d3fe2d22%2Fruns.csv?&
1641
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/connectors/connections/System.AppData/file/Proteomics%2Fspc-test%2F6c5ef640-8ca8-42a9-8d04-a8a8d3fe2d22%2Fruns-meta.json?&
1642
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/connectors/connections/System.AppData/file/Proteomics%2Fspc-test%2F6c5ef640-8ca8-42a9-8d04-a8a8d3fe2d22%2Fruns-meta.json?&&flag=59
1643
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/connectors/connections/System.AppData/file/Proteomics%2Fspc-test%2F6c5ef640-8ca8-42a9-8d04-a8a8d3fe2d22%2Fruns.csv?&
1644
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/connectors/connections/System.AppData/file/Proteomics%2Fspc-test%2F6c5ef640-8ca8-42a9-8d04-a8a8d3fe2d22%2Fruns.csv?&&flag=58
1645
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/connectors/connections/System.AppData/file/Proteomics%2Fspc-test%2F6c5ef640-8ca8-42a9-8d04-a8a8d3fe2d22%2Fruns.csv?&
1646
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/connectors/connections/System.AppData/file/Proteomics%2Fspc-test%2F6c5ef640-8ca8-42a9-8d04-a8a8d3fe2d22%2Fruns-meta.json?&
1647
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/connectors/connections/System.AppData/file/Proteomics%2Fspc-test%2F6c5ef640-8ca8-42a9-8d04-a8a8d3fe2d22%2Fruns-meta.json?&&flag=60
1648
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/connectors/connections/System.AppData/file/Proteomics%2Fspc-test%2F6c5ef640-8ca8-42a9-8d04-a8a8d3fe2d22%2Fruns.csv?&
1649
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/connectors/connections/System.AppData/file/Proteomics%2Fspc-test%2F6c5ef640-8ca8-42a9-8d04-a8a8d3fe2d22%2Fruns.csv?&&flag=60
1650
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/connectors/connections/System.AppData/file/Proteomics%2Fspc-test%2F6c5ef640-8ca8-42a9-8d04-a8a8d3fe2d22%2Fruns.csv?&
1651
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/connectors/connections/System.AppData/file/Proteomics%2Fspc-test%2F6c5ef640-8ca8-42a9-8d04-a8a8d3fe2d22%2Fruns-meta.json?&
1652
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/connectors/connections/System.AppData/file/Proteomics%2Fspc-test%2F6c5ef640-8ca8-42a9-8d04-a8a8d3fe2d22%2Fruns-meta.json?&&flag=61
1653
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/connectors/connections/System.AppData/file/Proteomics%2Fspc-test%2F6c5ef640-8ca8-42a9-8d04-a8a8d3fe2d22%2Fruns.csv?&
1654
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/connectors/connections/System.AppData/file/Proteomics%2Fspc-test%2F6c5ef640-8ca8-42a9-8d04-a8a8d3fe2d22%2Fruns.csv?&&flag=61
1655
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/connectors/connections/System.AppData/file/Proteomics%2Fspc-test%2F6c5ef640-8ca8-42a9-8d04-a8a8d3fe2d22%2Fruns.csv?&
1656
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/connectors/connections/System.AppData/file/Proteomics%2Fspc-test%2F6c5ef640-8ca8-42a9-8d04-a8a8d3fe2d22%2Fruns-meta.json?&
1657
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/connectors/connections/System.AppData/file/Proteomics%2Fspc-test%2F6c5ef640-8ca8-42a9-8d04-a8a8d3fe2d22%2Fruns-meta.json?&&flag=62
1658
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/connectors/connections/System.AppData/file/Proteomics%2Fspc-test%2F6c5ef640-8ca8-42a9-8d04-a8a8d3fe2d22%2Fruns.csv?&
1659
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/connectors/connections/System.AppData/file/Proteomics%2Fspc-test%2F6c5ef640-8ca8-42a9-8d04-a8a8d3fe2d22%2Fruns.csv?&&flag=61
1660
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/connectors/connections/System.AppData/file/Proteomics%2Fspc-test%2F6c5ef640-8ca8-42a9-8d04-a8a8d3fe2d22%2Fruns.csv?&
1661
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/connectors/connections/System.AppData/file/Proteomics%2Fspc-test%2F6c5ef640-8ca8-42a9-8d04-a8a8d3fe2d22%2Fruns-meta.json?&
1662
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/connectors/connections/System.AppData/file/Proteomics%2Fspc-test%2F6c5ef640-8ca8-42a9-8d04-a8a8d3fe2d22%2Fruns-meta.json?&&flag=63
1663
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/connectors/connections/System.AppData/file/Proteomics%2Fspc-test%2F6c5ef640-8ca8-42a9-8d04-a8a8d3fe2d22%2Fruns.csv?&
1664
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/connectors/connections/System.AppData/file/Proteomics%2Fspc-test%2F6c5ef640-8ca8-42a9-8d04-a8a8d3fe2d22%2Fruns.csv?&&flag=63
1665
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/connectors/connections/System.AppData/file/Proteomics%2Fspc-test%2F6c5ef640-8ca8-42a9-8d04-a8a8d3fe2d22%2Fruns.csv?&
1666
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/connectors/connections/System.AppData/file/Proteomics%2Fspc-test%2F6c5ef640-8ca8-42a9-8d04-a8a8d3fe2d22%2Fruns-meta.json?&
1667
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/connectors/connections/System.AppData/file/Proteomics%2Fspc-test%2F6c5ef640-8ca8-42a9-8d04-a8a8d3fe2d22%2Fruns-meta.json?&&flag=64
1668
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/connectors/connections/System.AppData/file/Proteomics%2Fspc-test%2F6c5ef640-8ca8-42a9-8d04-a8a8d3fe2d22%2Fruns.csv?&
1669
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/connectors/connections/System.AppData/file/Proteomics%2Fspc-test%2F6c5ef640-8ca8-42a9-8d04-a8a8d3fe2d22%2Fruns.csv?&&flag=64
1670
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/connectors/connections/System.AppData/file/Proteomics%2Fspc-test%2F6c5ef640-8ca8-42a9-8d04-a8a8d3fe2d22%2Fruns.csv?&
1671
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/connectors/connections/System.AppData/file/Proteomics%2Fspc-test%2F6c5ef640-8ca8-42a9-8d04-a8a8d3fe2d22%2Fruns-meta.json?&
1672
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/connectors/connections/System.AppData/file/Proteomics%2Fspc-test%2F6c5ef640-8ca8-42a9-8d04-a8a8d3fe2d22%2Fruns-meta.json?&&flag=65
1673
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/connectors/connections/System.AppData/file/Proteomics%2Fspc-test%2F6c5ef640-8ca8-42a9-8d04-a8a8d3fe2d22%2Fruns.csv?&
1674
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/connectors/connections/System.AppData/file/Proteomics%2Fspc-test%2F6c5ef640-8ca8-42a9-8d04-a8a8d3fe2d22%2Fruns.csv?&&flag=65
1675
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/connectors/connections/System.AppData/file/Proteomics%2Fspc-test%2F6c5ef640-8ca8-42a9-8d04-a8a8d3fe2d22%2Fruns.csv?&
1676
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/connectors/connections/System.AppData/file/Proteomics%2Fspc-test%2F6c5ef640-8ca8-42a9-8d04-a8a8d3fe2d22%2Fruns-meta.json?&
1677
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/connectors/connections/System.AppData/file/Proteomics%2Fspc-test%2F6c5ef640-8ca8-42a9-8d04-a8a8d3fe2d22%2Fruns-meta.json?&&flag=66
1678
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/connectors/connections/System.AppData/file/Proteomics%2Fspc-test%2F6c5ef640-8ca8-42a9-8d04-a8a8d3fe2d22%2Fruns.csv?&
1679
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/connectors/connections/System.AppData/file/Proteomics%2Fspc-test%2F6c5ef640-8ca8-42a9-8d04-a8a8d3fe2d22%2Fruns.csv?&&flag=65
1680
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/connectors/connections/System.AppData/file/Proteomics%2Fspc-test%2F6c5ef640-8ca8-42a9-8d04-a8a8d3fe2d22%2Fruns.csv?&
1681
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/connectors/connections/System.AppData/file/Proteomics%2Fspc-test%2F6c5ef640-8ca8-42a9-8d04-a8a8d3fe2d22%2Fruns-meta.json?&
1682
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/connectors/connections/System.AppData/file/Proteomics%2Fspc-test%2F6c5ef640-8ca8-42a9-8d04-a8a8d3fe2d22%2Fruns-meta.json?&&flag=67
1683
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/connectors/connections/System.AppData/file/Proteomics%2Fspc-test%2F6c5ef640-8ca8-42a9-8d04-a8a8d3fe2d22%2Fruns.csv?&
1684
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/connectors/connections/System.AppData/file/Proteomics%2Fspc-test%2F6c5ef640-8ca8-42a9-8d04-a8a8d3fe2d22%2Fruns.csv?&&flag=67
1685
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/connectors/connections/System.AppData/file/Proteomics%2Fspc-test%2F6c5ef640-8ca8-42a9-8d04-a8a8d3fe2d22%2Fruns.csv?&
1686
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/connectors/connections/System.AppData/file/Proteomics%2Fspc-test%2F6c5ef640-8ca8-42a9-8d04-a8a8d3fe2d22%2Fruns-meta.json?&
1687
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/connectors/connections/System.AppData/file/Proteomics%2Fspc-test%2F6c5ef640-8ca8-42a9-8d04-a8a8d3fe2d22%2Fruns-meta.json?&&flag=68
1688
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/connectors/connections/System.AppData/file/Proteomics%2Fspc-test%2F6c5ef640-8ca8-42a9-8d04-a8a8d3fe2d22%2Fruns.csv?&
1689
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/connectors/connections/System.AppData/file/Proteomics%2Fspc-test%2F6c5ef640-8ca8-42a9-8d04-a8a8d3fe2d22%2Fruns.csv?&&flag=68
1690
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/connectors/connections/System.AppData/file/Proteomics%2Fspc-test%2F6c5ef640-8ca8-42a9-8d04-a8a8d3fe2d22%2Fruns.csv?&
1691
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/connectors/connections/System.AppData/file/Proteomics%2Fspc-test%2F6c5ef640-8ca8-42a9-8d04-a8a8d3fe2d22%2Fruns-meta.json?&
1692
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/connectors/connections/System.AppData/file/Proteomics%2Fspc-test%2F6c5ef640-8ca8-42a9-8d04-a8a8d3fe2d22%2Fruns-meta.json?&&flag=69
1693
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/connectors/connections/System.AppData/file/Proteomics%2Fspc-test%2F6c5ef640-8ca8-42a9-8d04-a8a8d3fe2d22%2Fruns.csv?&
1694
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/connectors/connections/System.AppData/file/Proteomics%2Fspc-test%2F6c5ef640-8ca8-42a9-8d04-a8a8d3fe2d22%2Fruns.csv?&&flag=69
1695
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/connectors/connections/System.AppData/file/Proteomics%2Fspc-test%2F6c5ef640-8ca8-42a9-8d04-a8a8d3fe2d22%2Fruns.csv?&
1696
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/connectors/connections/System.AppData/file/Proteomics%2Fspc-test%2F6c5ef640-8ca8-42a9-8d04-a8a8d3fe2d22%2Fruns-meta.json?&
1697
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/connectors/connections/System.AppData/file/Proteomics%2Fspc-test%2F6c5ef640-8ca8-42a9-8d04-a8a8d3fe2d22%2Fruns-meta.json?&&flag=70
1698
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/connectors/connections/System.AppData/file/Proteomics%2Fspc-test%2F6c5ef640-8ca8-42a9-8d04-a8a8d3fe2d22%2Fruns.csv?&
1699
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/connectors/connections/System.AppData/file/Proteomics%2Fspc-test%2F6c5ef640-8ca8-42a9-8d04-a8a8d3fe2d22%2Fruns.csv?&&flag=68
1700
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/connectors/connections/System.AppData/file/Proteomics%2Fspc-test%2F6c5ef640-8ca8-42a9-8d04-a8a8d3fe2d22%2Fruns.csv?&
1701
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/connectors/connections/System.AppData/file/Proteomics%2Fspc-test%2F6c5ef640-8ca8-42a9-8d04-a8a8d3fe2d22%2Fruns-meta.json?&
1702
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/connectors/connections/System.AppData/file/Proteomics%2Fspc-test%2F6c5ef640-8ca8-42a9-8d04-a8a8d3fe2d22%2Fruns-meta.json?&&flag=71
1703
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/connectors/connections/System.AppData/file/Proteomics%2Fspc-test%2F6c5ef640-8ca8-42a9-8d04-a8a8d3fe2d22%2Fruns.csv?&
1704
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/connectors/connections/System.AppData/file/Proteomics%2Fspc-test%2F6c5ef640-8ca8-42a9-8d04-a8a8d3fe2d22%2Fruns.csv?&&flag=71
1705
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/connectors/connections/System.AppData/file/Proteomics%2Fspc-test%2F6c5ef640-8ca8-42a9-8d04-a8a8d3fe2d22%2Fruns.csv?&
1706
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/connectors/connections/System.AppData/file/Proteomics%2Fspc-test%2F6c5ef640-8ca8-42a9-8d04-a8a8d3fe2d22%2Fruns-meta.json?&
1707
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/connectors/connections/System.AppData/file/Proteomics%2Fspc-test%2F6c5ef640-8ca8-42a9-8d04-a8a8d3fe2d22%2Fruns-meta.json?&&flag=72
1708
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/connectors/connections/System.AppData/file/Proteomics%2Fspc-test%2F6c5ef640-8ca8-42a9-8d04-a8a8d3fe2d22%2Fruns.csv?&
1709
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/connectors/connections/System.AppData/file/Proteomics%2Fspc-test%2F6c5ef640-8ca8-42a9-8d04-a8a8d3fe2d22%2Fruns.csv?&&flag=72
1710
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/connectors/connections/System.AppData/file/Proteomics%2Fspc-test%2F6c5ef640-8ca8-42a9-8d04-a8a8d3fe2d22%2Fruns.csv?&
1711
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/connectors/connections/System.AppData/file/Proteomics%2Fspc-test%2F6c5ef640-8ca8-42a9-8d04-a8a8d3fe2d22%2Fruns-meta.json?&
1712
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/connectors/connections/System.AppData/file/Proteomics%2Fspc-test%2F6c5ef640-8ca8-42a9-8d04-a8a8d3fe2d22%2Fruns-meta.json?&&flag=73
1713
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/connectors/connections/System.AppData/file/Proteomics%2Fspc-test%2F6c5ef640-8ca8-42a9-8d04-a8a8d3fe2d22%2Fruns.csv?&
1714
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/connectors/connections/System.AppData/file/Proteomics%2Fspc-test%2F6c5ef640-8ca8-42a9-8d04-a8a8d3fe2d22%2Fruns.csv?&&flag=68
1715
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/connectors/connections/System.AppData/file/Proteomics%2Fspc-test%2F6c5ef640-8ca8-42a9-8d04-a8a8d3fe2d22%2Fruns.csv?&
1716
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/connectors/connections/System.AppData/file/Proteomics%2Fspc-test%2F6c5ef640-8ca8-42a9-8d04-a8a8d3fe2d22%2Fruns-meta.json?&
1717
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/connectors/connections/System.AppData/file/Proteomics%2Fspc-test%2F6c5ef640-8ca8-42a9-8d04-a8a8d3fe2d22%2Fruns-meta.json?&&flag=74
1718
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/connectors/connections/System.AppData/file/Proteomics%2Fspc-test%2F6c5ef640-8ca8-42a9-8d04-a8a8d3fe2d22%2Fruns.csv?&
1719
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/connectors/connections/System.AppData/file/Proteomics%2Fspc-test%2F6c5ef640-8ca8-42a9-8d04-a8a8d3fe2d22%2Fruns.csv?&&flag=74
1720
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/connectors/connections/System.AppData/file/Proteomics%2Fspc-test%2F6c5ef640-8ca8-42a9-8d04-a8a8d3fe2d22%2Fruns.csv?&
1721
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/connectors/connections/System.AppData/file/Proteomics%2Fspc-test%2F6c5ef640-8ca8-42a9-8d04-a8a8d3fe2d22%2Fruns-meta.json?&
1722
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/connectors/connections/System.AppData/file/Proteomics%2Fspc-test%2F6c5ef640-8ca8-42a9-8d04-a8a8d3fe2d22%2Fruns-meta.json?&&flag=75
1723
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/connectors/connections/System.AppData/file/Proteomics%2Fspc-test%2F6c5ef640-8ca8-42a9-8d04-a8a8d3fe2d22%2Fruns.csv?&
1724
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/connectors/connections/System.AppData/file/Proteomics%2Fspc-test%2F6c5ef640-8ca8-42a9-8d04-a8a8d3fe2d22%2Fruns.csv?&&flag=74
1725
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/connectors/connections/System.AppData/file/Proteomics%2Fspc-test%2F6c5ef640-8ca8-42a9-8d04-a8a8d3fe2d22%2Fruns.csv?&
1726
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/connectors/connections/System.AppData/file/Proteomics%2Fspc-test%2F6c5ef640-8ca8-42a9-8d04-a8a8d3fe2d22%2Fruns-meta.json?&
1727
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/connectors/connections/System.AppData/file/Proteomics%2Fspc-test%2F6c5ef640-8ca8-42a9-8d04-a8a8d3fe2d22%2Fruns-meta.json?&&flag=76
1728
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/connectors/connections/System.AppData/file/Proteomics%2Fspc-test%2F6c5ef640-8ca8-42a9-8d04-a8a8d3fe2d22%2Fruns.csv?&
1729
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/connectors/connections/System.AppData/file/Proteomics%2Fspc-test%2F6c5ef640-8ca8-42a9-8d04-a8a8d3fe2d22%2Fruns.csv?&&flag=76
1730
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/connectors/connections/System.AppData/file/Proteomics%2Fspc-test%2F6c5ef640-8ca8-42a9-8d04-a8a8d3fe2d22%2Fruns.csv?&
1731
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/connectors/connections/System.AppData/file/Proteomics%2Fspc-test%2F6c5ef640-8ca8-42a9-8d04-a8a8d3fe2d22%2Fruns-meta.json?&
1732
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/connectors/connections/System.AppData/file/Proteomics%2Fspc-test%2F6c5ef640-8ca8-42a9-8d04-a8a8d3fe2d22%2Fruns-meta.json?&&flag=77
1733
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/connectors/connections/System.AppData/file/Proteomics%2Fspc-test%2F6c5ef640-8ca8-42a9-8d04-a8a8d3fe2d22%2Fruns.csv?&
1734
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/connectors/connections/System.AppData/file/Proteomics%2Fspc-test%2F6c5ef640-8ca8-42a9-8d04-a8a8d3fe2d22%2Fruns.csv?&&flag=76
1735
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/connectors/connections/System.AppData/file/Proteomics%2Fspc-test%2F6c5ef640-8ca8-42a9-8d04-a8a8d3fe2d22%2Fruns.csv?&
1736
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/connectors/connections/System.AppData/file/Proteomics%2Fspc-test%2F6c5ef640-8ca8-42a9-8d04-a8a8d3fe2d22%2Fruns-meta.json?&
1737
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/connectors/connections/System.AppData/file/Proteomics%2Fspc-test%2F6c5ef640-8ca8-42a9-8d04-a8a8d3fe2d22%2Fruns-meta.json?&&flag=78
1738
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/connectors/connections/System.AppData/file/Proteomics%2Fspc-test%2F6c5ef640-8ca8-42a9-8d04-a8a8d3fe2d22%2Fruns.csv?&
1739
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/connectors/connections/System.AppData/file/Proteomics%2Fspc-test%2F6c5ef640-8ca8-42a9-8d04-a8a8d3fe2d22%2Fruns.csv?&&flag=78
1740
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/connectors/connections/System.AppData/file/Proteomics%2Fspc-test%2F6c5ef640-8ca8-42a9-8d04-a8a8d3fe2d22%2Fruns.csv?&
1741
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/connectors/connections/System.AppData/file/Proteomics%2Fspc-test%2F6c5ef640-8ca8-42a9-8d04-a8a8d3fe2d22%2Fruns-meta.json?&
1742
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/connectors/connections/System.AppData/file/Proteomics%2Fspc-test%2F6c5ef640-8ca8-42a9-8d04-a8a8d3fe2d22%2Fruns-meta.json?&&flag=79
1743
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/connectors/connections/System.AppData/file/Proteomics%2Fspc-test%2F6c5ef640-8ca8-42a9-8d04-a8a8d3fe2d22%2Fruns.csv?&
1744
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/connectors/connections/System.AppData/file/Proteomics%2Fspc-test%2F6c5ef640-8ca8-42a9-8d04-a8a8d3fe2d22%2Fruns.csv?&&flag=79
1745
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/connectors/connections/System.AppData/file/Proteomics%2Fspc-test%2F6c5ef640-8ca8-42a9-8d04-a8a8d3fe2d22%2Fruns.csv?&
1746
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/connectors/connections/System.AppData/file/Proteomics%2Fspc-test%2F6c5ef640-8ca8-42a9-8d04-a8a8d3fe2d22%2Fruns-meta.json?&
1747
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/connectors/connections/System.AppData/file/Proteomics%2Fspc-test%2F6c5ef640-8ca8-42a9-8d04-a8a8d3fe2d22%2Fruns-meta.json?&&flag=80
1748
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/connectors/connections/System.AppData/file/Proteomics%2Fspc-test%2F6c5ef640-8ca8-42a9-8d04-a8a8d3fe2d22%2Fruns.csv?&
1749
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/connectors/connections/System.AppData/file/Proteomics%2Fspc-test%2F6c5ef640-8ca8-42a9-8d04-a8a8d3fe2d22%2Fruns.csv?&&flag=80
1750
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/connectors/connections/System.AppData/file/Proteomics%2Fspc-test%2F6c5ef640-8ca8-42a9-8d04-a8a8d3fe2d22%2Fruns.csv?&
1751
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/connectors/connections/System.AppData/file/Proteomics%2Fspc-test%2F6c5ef640-8ca8-42a9-8d04-a8a8d3fe2d22%2Fruns-meta.json?&
1752
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/connectors/connections/System.AppData/file/Proteomics%2Fspc-test%2F6c5ef640-8ca8-42a9-8d04-a8a8d3fe2d22%2Fruns-meta.json?&&flag=81
1753
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/connectors/connections/System.AppData/file/Proteomics%2Fspc-test%2F6c5ef640-8ca8-42a9-8d04-a8a8d3fe2d22%2Fruns.csv?&
1754
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/connectors/connections/System.AppData/file/Proteomics%2Fspc-test%2F6c5ef640-8ca8-42a9-8d04-a8a8d3fe2d22%2Fruns.csv?&&flag=81
1755
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/connectors/connections/System.AppData/file/Proteomics%2Fspc-test%2F6c5ef640-8ca8-42a9-8d04-a8a8d3fe2d22%2Fruns.csv?&
1756
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/connectors/connections/System.AppData/file/Proteomics%2Fspc-test%2F6c5ef640-8ca8-42a9-8d04-a8a8d3fe2d22%2Fruns-meta.json?&
1757
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/connectors/connections/System.AppData/file/Proteomics%2Fspc-test%2F6c5ef640-8ca8-42a9-8d04-a8a8d3fe2d22%2Fruns-meta.json?&&flag=82
1758
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/connectors/connections/System.AppData/file/Proteomics%2Fspc-test%2F6c5ef640-8ca8-42a9-8d04-a8a8d3fe2d22%2Fruns.csv?&
1759
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/connectors/connections/System.AppData/file/Proteomics%2Fspc-test%2F6c5ef640-8ca8-42a9-8d04-a8a8d3fe2d22%2Fruns.csv?&&flag=82
1760
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/connectors/connections/System.AppData/file/Proteomics%2Fspc-test%2F6c5ef640-8ca8-42a9-8d04-a8a8d3fe2d22%2Fruns.csv?&
1761
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/connectors/connections/System.AppData/file/Proteomics%2Fspc-test%2F6c5ef640-8ca8-42a9-8d04-a8a8d3fe2d22%2Fruns-meta.json?&
1762
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/connectors/connections/System.AppData/file/Proteomics%2Fspc-test%2F6c5ef640-8ca8-42a9-8d04-a8a8d3fe2d22%2Fruns-meta.json?&&flag=83
1763
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/connectors/connections/System.AppData/file/Proteomics%2Fspc-test%2F6c5ef640-8ca8-42a9-8d04-a8a8d3fe2d22%2Fruns.csv?&
1764
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/connectors/connections/System.AppData/file/Proteomics%2Fspc-test%2F6c5ef640-8ca8-42a9-8d04-a8a8d3fe2d22%2Fruns.csv?&&flag=82
1765
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/connectors/connections/System.AppData/file/Proteomics%2Fspc-test%2F6c5ef640-8ca8-42a9-8d04-a8a8d3fe2d22%2Fruns.csv?&
1766
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/connectors/connections/System.AppData/file/Proteomics%2Fspc-test%2F6c5ef640-8ca8-42a9-8d04-a8a8d3fe2d22%2Fruns-meta.json?&
1767
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/connectors/connections/System.AppData/file/Proteomics%2Fspc-test%2F6c5ef640-8ca8-42a9-8d04-a8a8d3fe2d22%2Fruns-meta.json?&&flag=84
1768
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/connectors/connections/System.AppData/file/Proteomics%2Fspc-test%2F6c5ef640-8ca8-42a9-8d04-a8a8d3fe2d22%2Fruns.csv?&
1769
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/connectors/connections/System.AppData/file/Proteomics%2Fspc-test%2F6c5ef640-8ca8-42a9-8d04-a8a8d3fe2d22%2Fruns.csv?&&flag=82
1770
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/connectors/connections/System.AppData/file/Proteomics%2Fspc-test%2F6c5ef640-8ca8-42a9-8d04-a8a8d3fe2d22%2Fruns.csv?&
1771
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/connectors/connections/System.AppData/file/Proteomics%2Fspc-test%2F6c5ef640-8ca8-42a9-8d04-a8a8d3fe2d22%2Fruns-meta.json?&
1772
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/connectors/connections/System.AppData/file/Proteomics%2Fspc-test%2F6c5ef640-8ca8-42a9-8d04-a8a8d3fe2d22%2Fruns-meta.json?&&flag=85
1773
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/connectors/connections/System.AppData/file/Proteomics%2Fspc-test%2F6c5ef640-8ca8-42a9-8d04-a8a8d3fe2d22%2Fruns.csv?&
1774
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/connectors/connections/System.AppData/file/Proteomics%2Fspc-test%2F6c5ef640-8ca8-42a9-8d04-a8a8d3fe2d22%2Fruns.csv?&&flag=82
1775
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/connectors/connections/System.AppData/file/Proteomics%2Fspc-test%2F6c5ef640-8ca8-42a9-8d04-a8a8d3fe2d22%2Fruns.csv?&
1776
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/connectors/connections/System.AppData/file/Proteomics%2Fspc-test%2F6c5ef640-8ca8-42a9-8d04-a8a8d3fe2d22%2Fruns-meta.json?&
1777
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/connectors/connections/System.AppData/file/Proteomics%2Fspc-test%2F6c5ef640-8ca8-42a9-8d04-a8a8d3fe2d22%2Fruns-meta.json?&&flag=86
1778
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/connectors/connections/System.AppData/file/Proteomics%2Fspc-test%2F6c5ef640-8ca8-42a9-8d04-a8a8d3fe2d22%2Fruns.csv?&
1779
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/connectors/connections/System.AppData/file/Proteomics%2Fspc-test%2F6c5ef640-8ca8-42a9-8d04-a8a8d3fe2d22%2Fruns.csv?&&flag=86
1780
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/connectors/connections/System.AppData/file/Proteomics%2Fspc-test%2F6c5ef640-8ca8-42a9-8d04-a8a8d3fe2d22%2Fruns.csv?&
1781
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/connectors/connections/System.AppData/file/Proteomics%2Fspc-test%2F6c5ef640-8ca8-42a9-8d04-a8a8d3fe2d22%2Fruns-meta.json?&
1782
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/connectors/connections/System.AppData/file/Proteomics%2Fspc-test%2F6c5ef640-8ca8-42a9-8d04-a8a8d3fe2d22%2Fruns-meta.json?&&flag=87
1783
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/connectors/connections/System.AppData/file/Proteomics%2Fspc-test%2F6c5ef640-8ca8-42a9-8d04-a8a8d3fe2d22%2Fruns.csv?&
1784
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/connectors/connections/System.AppData/file/Proteomics%2Fspc-test%2F6c5ef640-8ca8-42a9-8d04-a8a8d3fe2d22%2Fruns.csv?&&flag=87
1785
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/connectors/connections/System.AppData/file/Proteomics%2Fspc-test%2F6c5ef640-8ca8-42a9-8d04-a8a8d3fe2d22%2Fruns.csv?&
1786
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/connectors/connections/System.AppData/file/Proteomics%2Fspc-test%2F6c5ef640-8ca8-42a9-8d04-a8a8d3fe2d22%2Fruns-meta.json?&
1787
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/connectors/connections/System.AppData/file/Proteomics%2Fspc-test%2F6c5ef640-8ca8-42a9-8d04-a8a8d3fe2d22%2Fruns-meta.json?&&flag=88
1788
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/connectors/connections/System.AppData/file/Proteomics%2Fspc-test%2F6c5ef640-8ca8-42a9-8d04-a8a8d3fe2d22%2Fruns.csv?&
1789
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/connectors/connections/System.AppData/file/Proteomics%2Fspc-test%2F6c5ef640-8ca8-42a9-8d04-a8a8d3fe2d22%2Fruns.csv?&&flag=87
1790
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/connectors/connections/System.AppData/file/Proteomics%2Fspc-test%2F6c5ef640-8ca8-42a9-8d04-a8a8d3fe2d22%2Fruns.csv?&
1791
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/connectors/connections/System.AppData/file/Proteomics%2Fspc-test%2F6c5ef640-8ca8-42a9-8d04-a8a8d3fe2d22%2Fruns-meta.json?&
1792
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/connectors/connections/System.AppData/file/Proteomics%2Fspc-test%2F6c5ef640-8ca8-42a9-8d04-a8a8d3fe2d22%2Fruns-meta.json?&&flag=89
1793
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/connectors/connections/System.AppData/file/Proteomics%2Fspc-test%2F6c5ef640-8ca8-42a9-8d04-a8a8d3fe2d22%2Fruns.csv?&
1794
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/connectors/connections/System.AppData/file/Proteomics%2Fspc-test%2F6c5ef640-8ca8-42a9-8d04-a8a8d3fe2d22%2Fruns.csv?&&flag=89
1795
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/connectors/connections/System.AppData/file/Proteomics%2Fspc-test%2F6c5ef640-8ca8-42a9-8d04-a8a8d3fe2d22%2Fruns.csv?&
1796
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/connectors/connections/System.AppData/file/Proteomics%2Fspc-test%2F6c5ef640-8ca8-42a9-8d04-a8a8d3fe2d22%2Fruns-meta.json?&
1797
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/connectors/connections/System.AppData/file/Proteomics%2Fspc-test%2F6c5ef640-8ca8-42a9-8d04-a8a8d3fe2d22%2Fruns-meta.json?&&flag=90
1798
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/connectors/connections/System.AppData/file/Proteomics%2Fspc-test%2F6c5ef640-8ca8-42a9-8d04-a8a8d3fe2d22%2Fruns.csv?&
1799
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/connectors/connections/System.AppData/file/Proteomics%2Fspc-test%2F6c5ef640-8ca8-42a9-8d04-a8a8d3fe2d22%2Fruns.csv?&&flag=89
1800
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/connectors/connections/System.AppData/file/Proteomics%2Fspc-test%2F6c5ef640-8ca8-42a9-8d04-a8a8d3fe2d22%2Fruns.csv?&
1801
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/connectors/connections/System.AppData/file/Proteomics%2Fspc-test%2F6c5ef640-8ca8-42a9-8d04-a8a8d3fe2d22%2Fruns-meta.json?&
1802
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/connectors/connections/System.AppData/file/Proteomics%2Fspc-test%2F6c5ef640-8ca8-42a9-8d04-a8a8d3fe2d22%2Fruns-meta.json?&&flag=91
1803
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/connectors/connections/System.AppData/file/Proteomics%2Fspc-test%2F6c5ef640-8ca8-42a9-8d04-a8a8d3fe2d22%2Fruns.csv?&
1804
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/connectors/connections/System.AppData/file/Proteomics%2Fspc-test%2F6c5ef640-8ca8-42a9-8d04-a8a8d3fe2d22%2Fruns.csv?&&flag=91
1805
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/connectors/connections/System.AppData/file/Proteomics%2Fspc-test%2F6c5ef640-8ca8-42a9-8d04-a8a8d3fe2d22%2Fruns.csv?&
1806
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/connectors/connections/System.AppData/file/Proteomics%2Fspc-test%2F6c5ef640-8ca8-42a9-8d04-a8a8d3fe2d22%2Fruns-meta.json?&
1807
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/connectors/connections/System.AppData/file/Proteomics%2Fspc-test%2F6c5ef640-8ca8-42a9-8d04-a8a8d3fe2d22%2Fruns-meta.json?&&flag=92
1808
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/connectors/connections/System.AppData/file/Proteomics%2Fspc-test%2F6c5ef640-8ca8-42a9-8d04-a8a8d3fe2d22%2Fruns.csv?&
1809
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/connectors/connections/System.AppData/file/Proteomics%2Fspc-test%2F6c5ef640-8ca8-42a9-8d04-a8a8d3fe2d22%2Fruns.csv?&&flag=92
1810
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/connectors/connections/System.AppData/file/Proteomics%2Fspc-test%2F6c5ef640-8ca8-42a9-8d04-a8a8d3fe2d22%2Fruns.csv?&
1811
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/connectors/connections/System.AppData/file/Proteomics%2Fspc-test%2F6c5ef640-8ca8-42a9-8d04-a8a8d3fe2d22%2Fruns-meta.json?&
1812
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/connectors/connections/System.AppData/file/Proteomics%2Fspc-test%2F6c5ef640-8ca8-42a9-8d04-a8a8d3fe2d22%2Fruns-meta.json?&&flag=93
1813
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/connectors/connections/System.AppData/file/Proteomics%2Fspc-test%2F6c5ef640-8ca8-42a9-8d04-a8a8d3fe2d22%2Fruns.csv?&
1814
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/connectors/connections/System.AppData/file/Proteomics%2Fspc-test%2F6c5ef640-8ca8-42a9-8d04-a8a8d3fe2d22%2Fruns.csv?&&flag=89
1815
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/connectors/connections/System.AppData/file/Proteomics%2Fspc-test%2F6c5ef640-8ca8-42a9-8d04-a8a8d3fe2d22%2Fruns.csv?&
1816
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/connectors/connections/System.AppData/file/Proteomics%2Fspc-test%2F6c5ef640-8ca8-42a9-8d04-a8a8d3fe2d22%2Fruns-meta.json?&
1817
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/connectors/connections/System.AppData/file/Proteomics%2Fspc-test%2F6c5ef640-8ca8-42a9-8d04-a8a8d3fe2d22%2Fruns-meta.json?&&flag=94
1818
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/connectors/connections/System.AppData/file/Proteomics%2Fspc-test%2F6c5ef640-8ca8-42a9-8d04-a8a8d3fe2d22%2Fruns.csv?&
1819
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/connectors/connections/System.AppData/file/Proteomics%2Fspc-test%2F6c5ef640-8ca8-42a9-8d04-a8a8d3fe2d22%2Fruns.csv?&&flag=94
1820
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/connectors/connections/System.AppData/file/Proteomics%2Fspc-test%2F6c5ef640-8ca8-42a9-8d04-a8a8d3fe2d22%2Fruns.csv?&
1821
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/connectors/connections/System.AppData/file/Proteomics%2Fspc-test%2F6c5ef640-8ca8-42a9-8d04-a8a8d3fe2d22%2Fruns-meta.json?&
1822
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/connectors/connections/System.AppData/file/Proteomics%2Fspc-test%2F6c5ef640-8ca8-42a9-8d04-a8a8d3fe2d22%2Fruns-meta.json?&&flag=95
1823
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/connectors/connections/System.AppData/file/Proteomics%2Fspc-test%2F6c5ef640-8ca8-42a9-8d04-a8a8d3fe2d22%2Fruns.csv?&
1824
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/connectors/connections/System.AppData/file/Proteomics%2Fspc-test%2F6c5ef640-8ca8-42a9-8d04-a8a8d3fe2d22%2Fruns.csv?&&flag=95
1825
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/connectors/connections/System.AppData/file/Proteomics%2Fspc-test%2F6c5ef640-8ca8-42a9-8d04-a8a8d3fe2d22%2Fruns.csv?&
1826
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/connectors/connections/System.AppData/file/Proteomics%2Fspc-test%2F6c5ef640-8ca8-42a9-8d04-a8a8d3fe2d22%2Fruns-meta.json?&
1827
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/connectors/connections/System.AppData/file/Proteomics%2Fspc-test%2F6c5ef640-8ca8-42a9-8d04-a8a8d3fe2d22%2Fruns-meta.json?&&flag=96
1828
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/connectors/connections/System.AppData/file/Proteomics%2Fspc-test%2F6c5ef640-8ca8-42a9-8d04-a8a8d3fe2d22%2Fruns.csv?&
1829
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/connectors/connections/System.AppData/file/Proteomics%2Fspc-test%2F6c5ef640-8ca8-42a9-8d04-a8a8d3fe2d22%2Fruns.csv?&&flag=95
1830
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/connectors/connections/System.AppData/file/Proteomics%2Fspc-test%2F6c5ef640-8ca8-42a9-8d04-a8a8d3fe2d22%2Fruns.csv?&
1831
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/connectors/connections/System.AppData/file/Proteomics%2Fspc-test%2F6c5ef640-8ca8-42a9-8d04-a8a8d3fe2d22%2Fruns-meta.json?&
1832
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/connectors/connections/System.AppData/file/Proteomics%2Fspc-test%2F6c5ef640-8ca8-42a9-8d04-a8a8d3fe2d22%2Fruns-meta.json?&&flag=97
1833
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/connectors/connections/System.AppData/file/Proteomics%2Fspc-test%2F6c5ef640-8ca8-42a9-8d04-a8a8d3fe2d22%2Fruns.csv?&
1834
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/connectors/connections/System.AppData/file/Proteomics%2Fspc-test%2F6c5ef640-8ca8-42a9-8d04-a8a8d3fe2d22%2Fruns.csv?&&flag=97
1835
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/connectors/connections/System.AppData/file/Proteomics%2Fspc-test%2F6c5ef640-8ca8-42a9-8d04-a8a8d3fe2d22%2Fruns.csv?&
1836
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/connectors/connections/System.AppData/file/Proteomics%2Fspc-test%2F6c5ef640-8ca8-42a9-8d04-a8a8d3fe2d22%2Fruns-meta.json?&
1837
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/connectors/connections/System.AppData/file/Proteomics%2Fspc-test%2F6c5ef640-8ca8-42a9-8d04-a8a8d3fe2d22%2Fruns-meta.json?&&flag=98
1838
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/connectors/connections/System.AppData/file/Proteomics%2Fspc-test%2F6c5ef640-8ca8-42a9-8d04-a8a8d3fe2d22%2Fruns.csv?&
1839
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/connectors/connections/System.AppData/file/Proteomics%2Fspc-test%2F6c5ef640-8ca8-42a9-8d04-a8a8d3fe2d22%2Fruns.csv?&&flag=98
1840
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/connectors/connections/System.AppData/file/Proteomics%2Fspc-test%2F6c5ef640-8ca8-42a9-8d04-a8a8d3fe2d22%2Fruns.csv?&
1841
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/connectors/connections/System.AppData/file/Proteomics%2Fspc-test%2F6c5ef640-8ca8-42a9-8d04-a8a8d3fe2d22%2Fruns-meta.json?&
1842
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/connectors/connections/System.AppData/file/Proteomics%2Fspc-test%2F6c5ef640-8ca8-42a9-8d04-a8a8d3fe2d22%2Fruns-meta.json?&&flag=99
1843
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/connectors/connections/System.AppData/file/Proteomics%2Fspc-test%2F6c5ef640-8ca8-42a9-8d04-a8a8d3fe2d22%2Fruns.csv?&
1844
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/connectors/connections/System.AppData/file/Proteomics%2Fspc-test%2F6c5ef640-8ca8-42a9-8d04-a8a8d3fe2d22%2Fruns.csv?&&flag=99
1845
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/connectors/connections/System.AppData/file/Proteomics%2Fspc-test%2F6c5ef640-8ca8-42a9-8d04-a8a8d3fe2d22%2Fruns.csv?&
1846
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/connectors/connections/System.AppData/file/Proteomics%2Fspc-test%2F6c5ef640-8ca8-42a9-8d04-a8a8d3fe2d22%2Fruns-meta.json?&
1847
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/connectors/connections/System.AppData/file/Proteomics%2Fspc-test%2F6c5ef640-8ca8-42a9-8d04-a8a8d3fe2d22%2Fruns-meta.json?&&flag=100
1848
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/connectors/connections/System.AppData/file/Proteomics%2Fspc-test%2F6c5ef640-8ca8-42a9-8d04-a8a8d3fe2d22%2Fruns.csv?&
1849
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/connectors/connections/System.AppData/file/Proteomics%2Fspc-test%2F6c5ef640-8ca8-42a9-8d04-a8a8d3fe2d22%2Fruns.csv?&&flag=100
1850
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/connectors/connections/System.AppData/file/Proteomics%2Fspc-test%2F6c5ef640-8ca8-42a9-8d04-a8a8d3fe2d22%2Fruns.csv?&
1851
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/connectors/connections/System.AppData/file/Proteomics%2Fspc-test%2F6c5ef640-8ca8-42a9-8d04-a8a8d3fe2d22%2Fruns-meta.json?&
1852
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/connectors/connections/System.AppData/file/Proteomics%2Fspc-test%2F6c5ef640-8ca8-42a9-8d04-a8a8d3fe2d22%2Fruns-meta.json?&&flag=101
1853
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/connectors/connections/System.AppData/file/Proteomics%2Fspc-test%2F6c5ef640-8ca8-42a9-8d04-a8a8d3fe2d22%2Fruns.csv?&
1854
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/connectors/connections/System.AppData/file/Proteomics%2Fspc-test%2F6c5ef640-8ca8-42a9-8d04-a8a8d3fe2d22%2Fruns.csv?&&flag=101
1855
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/connectors/connections/System.AppData/file/Proteomics%2Fspc-test%2F6c5ef640-8ca8-42a9-8d04-a8a8d3fe2d22%2Fruns.csv?&
1856
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/connectors/connections/System.AppData/file/Proteomics%2Fspc-test%2F6c5ef640-8ca8-42a9-8d04-a8a8d3fe2d22%2Fruns-meta.json?&
1857
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/connectors/connections/System.AppData/file/Proteomics%2Fspc-test%2F6c5ef640-8ca8-42a9-8d04-a8a8d3fe2d22%2Fruns-meta.json?&&flag=102
1858
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/connectors/connections/System.AppData/file/Proteomics%2Fspc-test%2F6c5ef640-8ca8-42a9-8d04-a8a8d3fe2d22%2Fruns.csv?&
1859
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/connectors/connections/System.AppData/file/Proteomics%2Fspc-test%2F6c5ef640-8ca8-42a9-8d04-a8a8d3fe2d22%2Fruns.csv?&&flag=101
1860
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/connectors/connections/System.AppData/file/Proteomics%2Fspc-test%2F6c5ef640-8ca8-42a9-8d04-a8a8d3fe2d22%2Fruns.csv?&
1861
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/connectors/connections/System.AppData/file/Proteomics%2Fspc-test%2F6c5ef640-8ca8-42a9-8d04-a8a8d3fe2d22%2Fruns-meta.json?&
1862
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/connectors/connections/System.AppData/file/Proteomics%2Fspc-test%2F6c5ef640-8ca8-42a9-8d04-a8a8d3fe2d22%2Fruns-meta.json?&&flag=103
1863
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/connectors/connections/System.AppData/file/Proteomics%2Fspc-test%2F6c5ef640-8ca8-42a9-8d04-a8a8d3fe2d22%2Fruns.csv?&
1864
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/connectors/connections/System.AppData/file/Proteomics%2Fspc-test%2F6c5ef640-8ca8-42a9-8d04-a8a8d3fe2d22%2Fruns.csv?&&flag=103
1865
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/connectors/connections/System.AppData/file/Proteomics%2Fspc-test%2F6c5ef640-8ca8-42a9-8d04-a8a8d3fe2d22%2Fruns.csv?&
1866
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/connectors/connections/System.AppData/file/Proteomics%2Fspc-test%2F6c5ef640-8ca8-42a9-8d04-a8a8d3fe2d22%2Fruns-meta.json?&
1867
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/connectors/connections/System.AppData/file/Proteomics%2Fspc-test%2F6c5ef640-8ca8-42a9-8d04-a8a8d3fe2d22%2Fruns-meta.json?&&flag=104
1868
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/connectors/connections/System.AppData/file/Proteomics%2Fspc-test%2F6c5ef640-8ca8-42a9-8d04-a8a8d3fe2d22%2Fruns.csv?&
1869
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/connectors/connections/System.AppData/file/Proteomics%2Fspc-test%2F6c5ef640-8ca8-42a9-8d04-a8a8d3fe2d22%2Fruns.csv?&&flag=103
1870
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/connectors/connections/System.AppData/file/Proteomics%2Fspc-test%2F6c5ef640-8ca8-42a9-8d04-a8a8d3fe2d22%2Fruns.csv?&
1871
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/connectors/connections/System.AppData/file/Proteomics%2Fspc-test%2F6c5ef640-8ca8-42a9-8d04-a8a8d3fe2d22%2Fruns-meta.json?&
1872
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/connectors/connections/System.AppData/file/Proteomics%2Fspc-test%2F6c5ef640-8ca8-42a9-8d04-a8a8d3fe2d22%2Fruns-meta.json?&&flag=105
1873
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/connectors/connections/System.AppData/file/Proteomics%2Fspc-test%2F6c5ef640-8ca8-42a9-8d04-a8a8d3fe2d22%2Fruns.csv?&
1874
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/connectors/connections/System.AppData/file/Proteomics%2Fspc-test%2F6c5ef640-8ca8-42a9-8d04-a8a8d3fe2d22%2Fruns.csv?&&flag=105
1875
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/connectors/connections/System.AppData/file/Proteomics%2Fspc-test%2F6c5ef640-8ca8-42a9-8d04-a8a8d3fe2d22%2Fruns.csv?&
1876
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/connectors/connections/System.AppData/file/Proteomics%2Fspc-test%2F6c5ef640-8ca8-42a9-8d04-a8a8d3fe2d22%2Fruns-meta.json?&
1877
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/connectors/connections/System.AppData/file/Proteomics%2Fspc-test%2F6c5ef640-8ca8-42a9-8d04-a8a8d3fe2d22%2Fruns-meta.json?&&flag=106
1878
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/connectors/connections/System.AppData/file/Proteomics%2Fspc-test%2F6c5ef640-8ca8-42a9-8d04-a8a8d3fe2d22%2Fruns.csv?&
1879
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/connectors/connections/System.AppData/file/Proteomics%2Fspc-test%2F6c5ef640-8ca8-42a9-8d04-a8a8d3fe2d22%2Fruns.csv?&&flag=106
1880
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/connectors/connections/System.AppData/file/Proteomics%2Fspc-test%2F6c5ef640-8ca8-42a9-8d04-a8a8d3fe2d22%2Fruns.csv?&
1881
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/connectors/connections/System.AppData/file/Proteomics%2Fspc-test%2F6c5ef640-8ca8-42a9-8d04-a8a8d3fe2d22%2Fruns-meta.json?&
1882
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/connectors/connections/System.AppData/file/Proteomics%2Fspc-test%2F6c5ef640-8ca8-42a9-8d04-a8a8d3fe2d22%2Fruns-meta.json?&&flag=107
1883
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/connectors/connections/System.AppData/file/Proteomics%2Fspc-test%2F6c5ef640-8ca8-42a9-8d04-a8a8d3fe2d22%2Fruns.csv?&
1884
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/connectors/connections/System.AppData/file/Proteomics%2Fspc-test%2F6c5ef640-8ca8-42a9-8d04-a8a8d3fe2d22%2Fruns.csv?&&flag=106
1885
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/connectors/connections/System.AppData/file/Proteomics%2Fspc-test%2F6c5ef640-8ca8-42a9-8d04-a8a8d3fe2d22%2Fruns.csv?&
1886
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/connectors/connections/System.AppData/file/Proteomics%2Fspc-test%2F6c5ef640-8ca8-42a9-8d04-a8a8d3fe2d22%2Fruns-meta.json?&
1887
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/connectors/connections/System.AppData/file/Proteomics%2Fspc-test%2F6c5ef640-8ca8-42a9-8d04-a8a8d3fe2d22%2Fruns-meta.json?&&flag=108
1888
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/connectors/connections/System.AppData/file/Proteomics%2Fspc-test%2F6c5ef640-8ca8-42a9-8d04-a8a8d3fe2d22%2Fruns.csv?&
1889
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/connectors/connections/System.AppData/file/Proteomics%2Fspc-test%2F6c5ef640-8ca8-42a9-8d04-a8a8d3fe2d22%2Fruns.csv?&&flag=108
1890
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/connectors/connections/System.AppData/file/Proteomics%2Fspc-test%2F6c5ef640-8ca8-42a9-8d04-a8a8d3fe2d22%2Fruns.csv?&
1891
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/connectors/connections/System.AppData/file/Proteomics%2Fspc-test%2F6c5ef640-8ca8-42a9-8d04-a8a8d3fe2d22%2Fruns-meta.json?&
1892
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/connectors/connections/System.AppData/file/Proteomics%2Fspc-test%2F6c5ef640-8ca8-42a9-8d04-a8a8d3fe2d22%2Fruns-meta.json?&&flag=109
1893
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/connectors/connections/System.AppData/file/Proteomics%2Fspc-test%2F6c5ef640-8ca8-42a9-8d04-a8a8d3fe2d22%2Fruns.csv?&
1894
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/connectors/connections/System.AppData/file/Proteomics%2Fspc-test%2F6c5ef640-8ca8-42a9-8d04-a8a8d3fe2d22%2Fruns.csv?&&flag=109
1895
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/connectors/connections/System.AppData/file/Proteomics%2Fspc-test%2F6c5ef640-8ca8-42a9-8d04-a8a8d3fe2d22%2Fruns.csv?&
1896
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/connectors/connections/System.AppData/file/Proteomics%2Fspc-test%2F6c5ef640-8ca8-42a9-8d04-a8a8d3fe2d22%2Fruns-meta.json?&
1897
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/connectors/connections/System.AppData/file/Proteomics%2Fspc-test%2F6c5ef640-8ca8-42a9-8d04-a8a8d3fe2d22%2Fruns-meta.json?&&flag=110
1898
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/connectors/connections/System.AppData/file/Proteomics%2Fspc-test%2F6c5ef640-8ca8-42a9-8d04-a8a8d3fe2d22%2Fruns.csv?&
1899
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/connectors/connections/System.AppData/file/Proteomics%2Fspc-test%2F6c5ef640-8ca8-42a9-8d04-a8a8d3fe2d22%2Fruns.csv?&&flag=110
1900
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/connectors/connections/System.AppData/file/Proteomics%2Fspc-test%2F6c5ef640-8ca8-42a9-8d04-a8a8d3fe2d22%2Fruns.csv?&
1901
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/connectors/connections/System.AppData/file/Proteomics%2Fspc-test%2F6c5ef640-8ca8-42a9-8d04-a8a8d3fe2d22%2Fruns-meta.json?&
1902
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/connectors/connections/System.AppData/file/Proteomics%2Fspc-test%2F6c5ef640-8ca8-42a9-8d04-a8a8d3fe2d22%2Fruns-meta.json?&&flag=111
1903
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/connectors/connections/System.AppData/file/Proteomics%2Fspc-test%2F6c5ef640-8ca8-42a9-8d04-a8a8d3fe2d22%2Fruns.csv?&
1904
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/connectors/connections/System.AppData/file/Proteomics%2Fspc-test%2F6c5ef640-8ca8-42a9-8d04-a8a8d3fe2d22%2Fruns.csv?&&flag=111
1905
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/connectors/connections/System.AppData/file/Proteomics%2Fspc-test%2F6c5ef640-8ca8-42a9-8d04-a8a8d3fe2d22%2Fruns.csv?&
1906
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/connectors/connections/System.AppData/file/Proteomics%2Fspc-test%2F6c5ef640-8ca8-42a9-8d04-a8a8d3fe2d22%2Fruns-meta.json?&
1907
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/connectors/connections/System.AppData/file/Proteomics%2Fspc-test%2F6c5ef640-8ca8-42a9-8d04-a8a8d3fe2d22%2Fruns-meta.json?&&flag=112
1908
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/connectors/connections/System.AppData/file/Proteomics%2Fspc-test%2F6c5ef640-8ca8-42a9-8d04-a8a8d3fe2d22%2Fruns.csv?&
1909
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/connectors/connections/System.AppData/file/Proteomics%2Fspc-test%2F6c5ef640-8ca8-42a9-8d04-a8a8d3fe2d22%2Fruns.csv?&&flag=112
1910
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/connectors/connections/System.AppData/file/Proteomics%2Fspc-test%2F6c5ef640-8ca8-42a9-8d04-a8a8d3fe2d22%2Fruns.csv?&
1911
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/connectors/connections/System.AppData/file/Proteomics%2Fspc-test%2F6c5ef640-8ca8-42a9-8d04-a8a8d3fe2d22%2Fruns-meta.json?&
1912
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/connectors/connections/System.AppData/file/Proteomics%2Fspc-test%2F6c5ef640-8ca8-42a9-8d04-a8a8d3fe2d22%2Fruns-meta.json?&&flag=113
1913
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/connectors/connections/System.AppData/file/Proteomics%2Fspc-test%2F6c5ef640-8ca8-42a9-8d04-a8a8d3fe2d22%2Fruns.csv?&
1914
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/connectors/connections/System.AppData/file/Proteomics%2Fspc-test%2F6c5ef640-8ca8-42a9-8d04-a8a8d3fe2d22%2Fruns.csv?&&flag=113
1915
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/connectors/connections/System.AppData/file/Proteomics%2Fspc-test%2F6c5ef640-8ca8-42a9-8d04-a8a8d3fe2d22%2Fruns.csv?&
1916
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/connectors/connections/System.AppData/file/Proteomics%2Fspc-test%2F6c5ef640-8ca8-42a9-8d04-a8a8d3fe2d22%2Fruns-meta.json?&
1917
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/connectors/connections/System.AppData/file/Proteomics%2Fspc-test%2F6c5ef640-8ca8-42a9-8d04-a8a8d3fe2d22%2Fruns-meta.json?&&flag=114
1918
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/connectors/connections/System.AppData/file/Proteomics%2Fspc-test%2F6c5ef640-8ca8-42a9-8d04-a8a8d3fe2d22%2Fruns.csv?&
1919
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/connectors/connections/System.AppData/file/Proteomics%2Fspc-test%2F6c5ef640-8ca8-42a9-8d04-a8a8d3fe2d22%2Fruns.csv?&&flag=114
1920
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/connectors/connections/System.AppData/file/Proteomics%2Fspc-test%2F6c5ef640-8ca8-42a9-8d04-a8a8d3fe2d22%2Fruns.csv?&
1921
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/connectors/connections/System.AppData/file/Proteomics%2Fspc-test%2F6c5ef640-8ca8-42a9-8d04-a8a8d3fe2d22%2Fruns-meta.json?&
1922
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/connectors/connections/System.AppData/file/Proteomics%2Fspc-test%2F6c5ef640-8ca8-42a9-8d04-a8a8d3fe2d22%2Fruns-meta.json?&&flag=115
1923
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/connectors/connections/System.AppData/file/Proteomics%2Fspc-test%2F6c5ef640-8ca8-42a9-8d04-a8a8d3fe2d22%2Fruns.csv?&
1924
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/connectors/connections/System.AppData/file/Proteomics%2Fspc-test%2F6c5ef640-8ca8-42a9-8d04-a8a8d3fe2d22%2Fruns.csv?&&flag=115
1925
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/connectors/connections/System.AppData/file/Proteomics%2Fspc-test%2F6c5ef640-8ca8-42a9-8d04-a8a8d3fe2d22%2Fruns.csv?&
1926
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/connectors/connections/System.AppData/file/Proteomics%2Fspc-test%2F6c5ef640-8ca8-42a9-8d04-a8a8d3fe2d22%2Fruns-meta.json?&
1927
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/connectors/connections/System.AppData/file/Proteomics%2Fspc-test%2F6c5ef640-8ca8-42a9-8d04-a8a8d3fe2d22%2Fruns-meta.json?&&flag=116
1928
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/connectors/connections/System.AppData/file/Proteomics%2Fspc-test%2F6c5ef640-8ca8-42a9-8d04-a8a8d3fe2d22%2Fruns.csv?&
1929
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/connectors/connections/System.AppData/file/Proteomics%2Fspc-test%2F6c5ef640-8ca8-42a9-8d04-a8a8d3fe2d22%2Fruns.csv?&&flag=112
1930
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/connectors/connections/System.AppData/file/Proteomics%2Fspc-test%2F6c5ef640-8ca8-42a9-8d04-a8a8d3fe2d22%2Fruns.csv?&
1931
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/connectors/connections/System.AppData/file/Proteomics%2Fspc-test%2F6c5ef640-8ca8-42a9-8d04-a8a8d3fe2d22%2Fruns-meta.json?&
1932
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/connectors/connections/System.AppData/file/Proteomics%2Fspc-test%2F6c5ef640-8ca8-42a9-8d04-a8a8d3fe2d22%2Fruns-meta.json?&&flag=117
1933
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/connectors/connections/System.AppData/file/Proteomics%2Fspc-test%2F6c5ef640-8ca8-42a9-8d04-a8a8d3fe2d22%2Fruns.csv?&
1934
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/connectors/connections/System.AppData/file/Proteomics%2Fspc-test%2F6c5ef640-8ca8-42a9-8d04-a8a8d3fe2d22%2Fruns.csv?&&flag=117
1935
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/connectors/connections/System.AppData/file/Proteomics%2Fspc-test%2F6c5ef640-8ca8-42a9-8d04-a8a8d3fe2d22%2Fruns.csv?&
1936
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/connectors/connections/System.AppData/file/Proteomics%2Fspc-test%2F6c5ef640-8ca8-42a9-8d04-a8a8d3fe2d22%2Fruns-meta.json?&
1937
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/connectors/connections/System.AppData/file/Proteomics%2Fspc-test%2F6c5ef640-8ca8-42a9-8d04-a8a8d3fe2d22%2Fruns-meta.json?&&flag=118
1938
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/connectors/connections/System.AppData/file/Proteomics%2Fspc-test%2F6c5ef640-8ca8-42a9-8d04-a8a8d3fe2d22%2Fruns.csv?&
1939
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/connectors/connections/System.AppData/file/Proteomics%2Fspc-test%2F6c5ef640-8ca8-42a9-8d04-a8a8d3fe2d22%2Fruns.csv?&&flag=118
1940
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/connectors/connections/System.AppData/file/Proteomics%2Fspc-test%2F6c5ef640-8ca8-42a9-8d04-a8a8d3fe2d22%2Fruns.csv?&
1941
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/connectors/connections/System.AppData/file/Proteomics%2Fspc-test%2F6c5ef640-8ca8-42a9-8d04-a8a8d3fe2d22%2Fruns-meta.json?&
1942
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/connectors/connections/System.AppData/file/Proteomics%2Fspc-test%2F6c5ef640-8ca8-42a9-8d04-a8a8d3fe2d22%2Fruns-meta.json?&&flag=119
1943
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/connectors/connections/System.AppData/file/Proteomics%2Fspc-test%2F6c5ef640-8ca8-42a9-8d04-a8a8d3fe2d22%2Fruns.csv?&
1944
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/connectors/connections/System.AppData/file/Proteomics%2Fspc-test%2F6c5ef640-8ca8-42a9-8d04-a8a8d3fe2d22%2Fruns.csv?&&flag=119
1945
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/connectors/connections/System.AppData/file/Proteomics%2Fspc-test%2F6c5ef640-8ca8-42a9-8d04-a8a8d3fe2d22%2Fruns.csv?&
1946
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/connectors/connections/System.AppData/file/Proteomics%2Fspc-test%2F6c5ef640-8ca8-42a9-8d04-a8a8d3fe2d22%2Fruns-meta.json?&
1947
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/connectors/connections/System.AppData/file/Proteomics%2Fspc-test%2F6c5ef640-8ca8-42a9-8d04-a8a8d3fe2d22%2Fruns-meta.json?&&flag=120
1948
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/connectors/connections/System.AppData/file/Proteomics%2Fspc-test%2F6c5ef640-8ca8-42a9-8d04-a8a8d3fe2d22%2Fruns.csv?&
1949
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/connectors/connections/System.AppData/file/Proteomics%2Fspc-test%2F6c5ef640-8ca8-42a9-8d04-a8a8d3fe2d22%2Fruns.csv?&&flag=120
1950
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/connectors/connections/System.AppData/file/Proteomics%2Fspc-test%2F6c5ef640-8ca8-42a9-8d04-a8a8d3fe2d22%2Fruns.csv?&
1951
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/connectors/connections/System.AppData/file/Proteomics%2Fspc-test%2F6c5ef640-8ca8-42a9-8d04-a8a8d3fe2d22%2Fruns-meta.json?&
1952
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/connectors/connections/System.AppData/file/Proteomics%2Fspc-test%2F6c5ef640-8ca8-42a9-8d04-a8a8d3fe2d22%2Fruns-meta.json?&&flag=121
1953
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/connectors/connections/System.AppData/file/Proteomics%2Fspc-test%2F6c5ef640-8ca8-42a9-8d04-a8a8d3fe2d22%2Fruns.csv?&
1954
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/connectors/connections/System.AppData/file/Proteomics%2Fspc-test%2F6c5ef640-8ca8-42a9-8d04-a8a8d3fe2d22%2Fruns.csv?&&flag=119
1955
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/connectors/connections/System.AppData/file/Proteomics%2Fspc-test%2F6c5ef640-8ca8-42a9-8d04-a8a8d3fe2d22%2Fruns.csv?&
1956
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/connectors/connections/System.AppData/file/Proteomics%2Fspc-test%2F6c5ef640-8ca8-42a9-8d04-a8a8d3fe2d22%2Fruns-meta.json?&
1957
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/connectors/connections/System.AppData/file/Proteomics%2Fspc-test%2F6c5ef640-8ca8-42a9-8d04-a8a8d3fe2d22%2Fruns-meta.json?&&flag=122
1958
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/connectors/connections/System.AppData/file/Proteomics%2Fspc-test%2F6c5ef640-8ca8-42a9-8d04-a8a8d3fe2d22%2Fruns.csv?&
1959
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/connectors/connections/System.AppData/file/Proteomics%2Fspc-test%2F6c5ef640-8ca8-42a9-8d04-a8a8d3fe2d22%2Fruns.csv?&&flag=122
1960
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/connectors/connections/System.AppData/file/Proteomics%2Fspc-test%2F6c5ef640-8ca8-42a9-8d04-a8a8d3fe2d22%2Fruns.csv?&
1961
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/connectors/connections/System.AppData/file/Proteomics%2Fspc-test%2F6c5ef640-8ca8-42a9-8d04-a8a8d3fe2d22%2Fruns-meta.json?&
1962
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/connectors/connections/System.AppData/file/Proteomics%2Fspc-test%2F6c5ef640-8ca8-42a9-8d04-a8a8d3fe2d22%2Fruns-meta.json?&&flag=123
1963
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/connectors/connections/System.AppData/file/Proteomics%2Fspc-test%2F6c5ef640-8ca8-42a9-8d04-a8a8d3fe2d22%2Fruns.csv?&
1964
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/connectors/connections/System.AppData/file/Proteomics%2Fspc-test%2F6c5ef640-8ca8-42a9-8d04-a8a8d3fe2d22%2Fruns.csv?&&flag=123
1965
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/connectors/connections/System.AppData/file/Proteomics%2Fspc-test%2F6c5ef640-8ca8-42a9-8d04-a8a8d3fe2d22%2Fruns.csv?&
1966
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/connectors/connections/System.AppData/file/Proteomics%2Fspc-test%2F6c5ef640-8ca8-42a9-8d04-a8a8d3fe2d22%2Fruns.csv?&&flag=123
1967
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/connectors/connections/System.AppData/delete_files/
1968
+ CONSOLE LOG ENTRY: Package testing: Finished {{SPC}} {{SPC:storage_bounded}} with {{success}} for 8451 ms
1969
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/log/tests/package?benchmark=false&ciCd=false
1970
+ CONSOLE LOG ENTRY: Package testing: Started {{SPC}} {{SPC:schema_version}}
1971
+ CONSOLE LOG REQUEST: 404, http://localhost:8080/api/connectors/connections/System.AppData/file/Proteomics%2Fspc-test%2Fcf850e09-9d53-484a-9d36-64d46ddf7cb7%2Fruns.csv?&
1972
+ CONSOLE LOG ENTRY: Failed to load resource: the server responded with a status of 404 (Not Found)
1973
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/connectors/connections/System.AppData/file/Proteomics%2Fspc-test%2Fcf850e09-9d53-484a-9d36-64d46ddf7cb7%2Fruns.csv?&
1974
+ CONSOLE LOG REQUEST: 404, http://localhost:8080/api/connectors/connections/System.AppData/file/Proteomics%2Fspc-test%2Fcf850e09-9d53-484a-9d36-64d46ddf7cb7%2Fruns-meta.json?&
1975
+ CONSOLE LOG ENTRY: Failed to load resource: the server responded with a status of 404 (Not Found)
1976
+ CONSOLE LOG REQUEST: 404, http://localhost:8080/api/connectors/connections/System.AppData/file/Proteomics%2Fspc-test%2Fcf850e09-9d53-484a-9d36-64d46ddf7cb7%2Fruns-meta.json?&
1977
+ CONSOLE LOG ENTRY: Failed to load resource: the server responded with a status of 404 (Not Found)
1978
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/connectors/connections/System.AppData/file/Proteomics%2Fspc-test%2Fcf850e09-9d53-484a-9d36-64d46ddf7cb7%2Fruns-meta.json?&
1979
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/connectors/connections/System.AppData/file/Proteomics%2Fspc-test%2Fcf850e09-9d53-484a-9d36-64d46ddf7cb7%2Fruns-meta.json?&
1980
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/connectors/connections/System.AppData/file/Proteomics%2Fspc-test%2Fcf850e09-9d53-484a-9d36-64d46ddf7cb7%2Fruns-meta.json?&&flag=126
1981
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/connectors/connections/System.AppData/delete_files/
1982
+ CONSOLE LOG ENTRY: Package testing: Finished {{SPC}} {{SPC:schema_version}} with {{success}} for 141 ms
1983
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/log/tests/package?benchmark=false&ciCd=false
1984
+ CONSOLE LOG ENTRY: Package testing: Started {{SPC}} {{SPC:column_idempotent}}
1985
+ CONSOLE LOG ENTRY: Package testing: Finished {{SPC}} {{SPC:column_idempotent}} with {{success}} for 2 ms
1986
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/log/tests/package?benchmark=false&ciCd=false
1987
+ CONSOLE LOG ENTRY: Package testing: Started {{SPC}} {{SPC:belt_and_braces}}
1988
+ CONSOLE LOG ENTRY: Package testing: Finished {{SPC}} {{SPC:belt_and_braces}} with {{success}} for 1 ms
1989
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/log/tests/package?benchmark=false&ciCd=false
1990
+ CONSOLE LOG ENTRY: Package testing: Started {{SPC}} {{SPC:drilldown_resolved}}
1991
+ CONSOLE LOG ENTRY: Package testing: Finished {{SPC}} {{SPC:drilldown_resolved}} with {{success}} for 1 ms
1992
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/log/tests/package?benchmark=false&ciCd=false
1993
+ CONSOLE LOG ENTRY: Package testing: Started {{SPC}} {{SPC:drilldown_missing}}
1994
+ CONSOLE LOG ENTRY: Package testing: Finished {{SPC}} {{SPC:drilldown_missing}} with {{success}} for 1 ms
1995
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/log/tests/package?benchmark=false&ciCd=false
1996
+ CONSOLE LOG ENTRY: Package testing: Started {{SPC}} {{SPC:dashboard_renders}}
1997
+ CONSOLE LOG ENTRY: Package testing: Finished {{SPC}} {{SPC:dashboard_renders}} with {{success}} for 43 ms
1998
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/log/tests/package?benchmark=false&ciCd=false
1999
+ CONSOLE LOG ENTRY: Package testing: Started {{SPC}} {{SPC:formula_lines}}
2000
+ CONSOLE LOG ENTRY: Package testing: Finished {{SPC}} {{SPC:formula_lines}} with {{success}} for 1 ms
2001
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/log/tests/package?benchmark=false&ciCd=false
2002
+ CONSOLE LOG ENTRY: Package testing: Started {{SPC}} {{SPC:pareto_descending}}
2003
+ CONSOLE LOG ENTRY: Package testing: Finished {{SPC}} {{SPC:pareto_descending}} with {{success}} for 1 ms
2004
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/log/tests/package?benchmark=false&ciCd=false
2005
+ CONSOLE LOG ENTRY: Package testing: Started {{Demo}}
2006
+ CONSOLE LOG ENTRY: Package testing: Started {{Demo}} {{Proteomics Enrichment Demo}}
2007
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/connectors/connections/System.AppData/file/Proteomics%2Fdemo%2Fenrichment-demo.csv?&&flag=127
2008
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/help/visualize/viewers/scatter-plot.md
2009
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/help/datagrok/datagrok.md
2010
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/connectors/proxy?url=https://rest.uniprot.org/uniprotkb/P06493.json?fields=accession,protein_name,gene_names,organism_name,cc_function,go
2011
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/connectors/proxy
2012
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/connectors/proxy
2013
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/help/visualize/viewers/scatter-plot.md
2014
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/help/visualize/viewers/scatter-plot.md
2015
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/help/visualize/viewers/bar-chart.md
2016
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/help/visualize/viewers/bar-chart.md
2017
+ CONSOLE LOG ENTRY: Package testing: Finished {{Demo}} {{Proteomics Enrichment Demo}} with {{success}} for 5769 ms
2018
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/log/tests/package?benchmark=false&ciCd=false
2019
+ CONSOLE LOG ENTRY: Package testing: Started {{Demo}} {{Proteomics Demo}}
2020
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/connectors/connections/System.AppData/file/Proteomics%2Fdemo%2Fspectronaut-hye-demo.tsv?&&flag=127
2021
+ CONSOLE LOG ENTRY: Dendrogram clustering unavailable, falling back to significance-based row ordering: Dendrogram package not installed (hierarchicalClustering not found)
2022
+ CONSOLE LOG ENTRY: Package GrokML is not available...
2023
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/help/visualize/viewers/scatter-plot.md
2024
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/help/visualize/viewers/grid.md
2025
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/help/visualize/viewers/correlation-plot.md
2026
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/help/visualize/viewers/box-plot.md
2027
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/help/visualize/viewers/scatter-plot.md
2028
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/help/visualize/viewers/correlation-plot.md
2029
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/help/visualize/viewers/scatter-plot.md
2030
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/help/visualize/viewers/scatter-plot.md
2031
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/help/visualize/viewers/scatter-plot.md
2032
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/help/visualize/viewers/grid.md
2033
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/help/visualize/viewers/scatter-plot.md
2034
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/help/visualize/viewers/scatter-plot.md
2035
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/help/visualize/viewers/img/grid-rows-interactivity-thumb.png
2036
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/help/deploy/releases/img/column-preview-filter-by-type-thumb.png
2037
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/help/visualize/viewers/img/grid-column-reordering-thumb.png
2038
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/help/deploy/releases/img/plots-info-pane-thumb.png
2039
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/help/visualize/viewers/img/grid-grouped-columns-thumb.png
2040
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/help/visualize/viewers/img/grid-unhide-columns-thumb.png
2041
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/help/visualize/viewers/img/grid-resize-multiple-columns-thumb.png
2042
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/help/visualize/viewers/img/grid-dynamic-column-widths-thumb.png
2043
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/help/visualize/viewers/img/grid-mouse-pan-content-thumb.png
2044
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/help/uploads/icons/add-new-column.png
2045
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/help/uploads/viewers/grid-summary-columns.png
2046
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/help/deploy/releases/img/smart-forms-thumb.png
2047
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/help/visualize/viewers/img/grid-forms-thumb.png
2048
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/help/visualize/viewers/img/cell-renderers-examples-thumb.png
2049
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/help/visualize/viewers/img/grid-column-groups-thumb.png
2050
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/help/deploy/releases/img/release1.18-cellrend-tags-multichoice-dropdown-thumb.png
2051
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/help/deploy/releases/img/grid-nested-linked-tables-thumb.png
2052
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/help/develop/how-to/grid/binary-cell-renderer-thumb.png
2053
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/help/visualize/viewers/img/charts-in-cells-thumb.png
2054
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/help/visualize/viewers/img/grid-custom-form-in-cell-thumb.png
2055
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/help/visualize/viewers/img/grid-custom-html-form-thumb.png
2056
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/help/visualize/viewers/img/grid-adaptive-number-formatting-thumb.png
2057
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/help/visualize/viewers/img/grid-add-data-info-panes-thumb.png
2058
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/help/visualize/viewers/img/grid-filtering-thumb.png
2059
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/help/visualize/viewers/img/grid-search-highlights-thumb.png
2060
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/help/datagrok/navigation/views/img/search-in-table-thumb.png
2061
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/help/visualize/viewers/img/grid-custom-format-thumb.png
2062
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/help/visualize/viewers/img/grid-add-new-rows-columns-thumb.png
2063
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/help/visualize/viewers/img/custom-formatting-dates-thumb.png
2064
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/help/visualize/viewers/img/pinned-rows-thumb.png
2065
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/help/visualize/viewers/img/grid-color-coding-new-thumb.png
2066
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/help/visualize/viewers/img/grid-column-hide-reorder-thumb.png
2067
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/help/visualize/viewers/img/grid-columns-preview-thumb.png
2068
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/help/uploads/gifs/correlation-plot-thumb.png
2069
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/help/uploads/viewers/box-plot.png
2070
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/help/datagrok/datagrok.md
2071
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/connectors/proxy?url=https://rest.uniprot.org/uniprotkb/P0A9A6.json?fields=accession,protein_name,gene_names,organism_name,cc_function,go
2072
+ CONSOLE LOG ENTRY: Package testing: Finished {{Demo}} {{Proteomics Demo}} with {{success}} for 3209 ms
2073
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/log/tests/package?benchmark=false&ciCd=false