@platforma-open/milaboratories.mixcr-clonotyping-2.workflow 3.1.1 → 3.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.
- package/.turbo/turbo-build.log +1 -1
- package/CHANGELOG.md +12 -0
- package/dist/tengo/lib/calculate-export-specs.lib.tengo +2 -3
- package/dist/tengo/lib/qc-report-columns.lib.tengo +277 -274
- package/dist/tengo/tpl/aggregate-by-clonotype-key.plj.gz +0 -0
- package/dist/tengo/tpl/calculate-preset-info.plj.gz +0 -0
- package/dist/tengo/tpl/export-report.plj.gz +0 -0
- package/dist/tengo/tpl/list-presets.plj.gz +0 -0
- package/dist/tengo/tpl/main.plj.gz +0 -0
- package/dist/tengo/tpl/mixcr-analyze.plj.gz +0 -0
- package/dist/tengo/tpl/mixcr-export.plj.gz +0 -0
- package/dist/tengo/tpl/prerun.plj.gz +0 -0
- package/dist/tengo/tpl/process-single-cell.plj.gz +0 -0
- package/dist/tengo/tpl/process.plj.gz +0 -0
- package/dist/tengo/tpl/test.columns-calculate.plj.gz +0 -0
- package/dist/tengo/tpl/test.columns.test.plj.gz +0 -0
- package/package.json +1 -1
- package/src/aggregate-by-clonotype-key.tpl.tengo +1 -1
- package/src/calculate-export-specs.lib.tengo +2 -3
- package/src/export-report.tpl.tengo +6 -3
- package/src/mixcr-export.tpl.tengo +17 -1
- package/src/process-single-cell.tpl.tengo +1 -1
- package/src/process.tpl.tengo +14 -5
- package/src/qc-report-columns.lib.tengo +277 -274
package/.turbo/turbo-build.log
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
WARN Issue while reading "/home/runner/work/mixcr-clonotyping/mixcr-clonotyping/.npmrc". Failed to replace env in config: ${NPMJS_TOKEN}
|
|
2
2
|
|
|
3
|
-
> @platforma-open/milaboratories.mixcr-clonotyping-2.workflow@3.
|
|
3
|
+
> @platforma-open/milaboratories.mixcr-clonotyping-2.workflow@3.2.1 build /home/runner/work/mixcr-clonotyping/mixcr-clonotyping/workflow
|
|
4
4
|
> rm -rf dist && pl-tengo check && pl-tengo build
|
|
5
5
|
|
|
6
6
|
info: Skipping unknown file type: test/columns.test.ts
|
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,17 @@
|
|
|
1
1
|
# @platforma-open/milaboratories.mixcr-clonotyping.workflow
|
|
2
2
|
|
|
3
|
+
## 3.2.1
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- ebad6c6: Fixes export error on SC presets without UMI
|
|
8
|
+
|
|
9
|
+
## 3.2.0
|
|
10
|
+
|
|
11
|
+
### Minor Changes
|
|
12
|
+
|
|
13
|
+
- 73af94c: nLengthTotalAdded column NA regex fix
|
|
14
|
+
|
|
3
15
|
## 3.1.1
|
|
4
16
|
|
|
5
17
|
### Patch Changes
|
|
@@ -545,12 +545,11 @@ calculateExportSpecs := func(presetSpecForBack, sampleIdAxisSpec, blockId) {
|
|
|
545
545
|
junctionTypes := [ "VJ", "VD", "DJ" ]
|
|
546
546
|
for junctionType in junctionTypes {
|
|
547
547
|
feature := junctionType + "Junction"
|
|
548
|
-
naRegex := junctionType == "VJ" ? "region_not_covered" : "no_d_gene"
|
|
549
548
|
|
|
550
549
|
columnsSpecPerClonotypeNoAggregates += [ {
|
|
551
550
|
column: "nLength" + feature,
|
|
552
551
|
id: "n-length-" + text.to_lower(junctionType) + "-junction",
|
|
553
|
-
naRegex:
|
|
552
|
+
naRegex: "^[a-z_]*$",
|
|
554
553
|
allowNA: true,
|
|
555
554
|
spec: {
|
|
556
555
|
name: "pl7.app/vdj/sequenceLength",
|
|
@@ -572,7 +571,7 @@ calculateExportSpecs := func(presetSpecForBack, sampleIdAxisSpec, blockId) {
|
|
|
572
571
|
columnsSpecPerClonotypeNoAggregates += [ {
|
|
573
572
|
column: "nLengthTotalAdded",
|
|
574
573
|
id: "n-length-total-added",
|
|
575
|
-
naRegex: "
|
|
574
|
+
naRegex: "^[a-z_]*$",
|
|
576
575
|
allowNA: true,
|
|
577
576
|
spec: {
|
|
578
577
|
name: "pl7.app/vdj/sequenceLength",
|
|
@@ -5,7 +5,7 @@ ll := import("@platforma-sdk/workflow-tengo:ll")
|
|
|
5
5
|
pConstants := import("@platforma-sdk/workflow-tengo:pframes.constants")
|
|
6
6
|
|
|
7
7
|
|
|
8
|
-
getQcReportColumns := func(hasUmi, isSingleCell, sampleIdAxisSpec, chains) {
|
|
8
|
+
getQcReportColumns := func(hasUmi, isSingleCell, sampleIdAxisSpec, chains, cellTags) {
|
|
9
9
|
|
|
10
10
|
baseColumns := [
|
|
11
11
|
{
|
|
@@ -489,7 +489,7 @@ getQcReportColumns := func(hasUmi, isSingleCell, sampleIdAxisSpec, chains) {
|
|
|
489
489
|
column: "assemble.preCloneAssembler.unassignedAlignments",
|
|
490
490
|
id: "assemble-pre-clone-assembler-unassigned-alignments",
|
|
491
491
|
allowNA: true,
|
|
492
|
-
naRegex: "",
|
|
492
|
+
naRegex: "^[a-zA-Z_]*$",
|
|
493
493
|
spec: {
|
|
494
494
|
name: "mixcr.com/reports/assemble/preCloneAssembler/unassignedAlignments",
|
|
495
495
|
valueType: "Long",
|
|
@@ -505,7 +505,7 @@ getQcReportColumns := func(hasUmi, isSingleCell, sampleIdAxisSpec, chains) {
|
|
|
505
505
|
column: "assemble.preCloneAssembler.unassignedAlignmentsPercents",
|
|
506
506
|
id: "assemble-pre-clone-assembler-unassigned-alignments-percents",
|
|
507
507
|
allowNA: true,
|
|
508
|
-
naRegex: "",
|
|
508
|
+
naRegex: "^[a-zA-Z_]*$",
|
|
509
509
|
spec: {
|
|
510
510
|
name: "mixcr.com/reports/assemble/preCloneAssembler/unassignedAlignmentsPercents",
|
|
511
511
|
valueType: "Double",
|
|
@@ -736,204 +736,204 @@ getQcReportColumns := func(hasUmi, isSingleCell, sampleIdAxisSpec, chains) {
|
|
|
736
736
|
|
|
737
737
|
|
|
738
738
|
singleCellColumns := [
|
|
739
|
-
|
|
740
|
-
|
|
741
|
-
|
|
742
|
-
|
|
743
|
-
|
|
744
|
-
|
|
745
|
-
|
|
746
|
-
|
|
747
|
-
|
|
748
|
-
|
|
749
|
-
|
|
750
|
-
|
|
751
|
-
|
|
752
|
-
|
|
753
|
-
|
|
754
|
-
|
|
755
|
-
|
|
756
|
-
|
|
757
|
-
|
|
758
|
-
|
|
759
|
-
|
|
760
|
-
|
|
761
|
-
|
|
762
|
-
|
|
763
|
-
|
|
764
|
-
|
|
765
|
-
|
|
766
|
-
|
|
767
|
-
|
|
768
|
-
|
|
769
|
-
|
|
770
|
-
|
|
771
|
-
|
|
772
|
-
|
|
773
|
-
|
|
774
|
-
|
|
775
|
-
|
|
776
|
-
|
|
777
|
-
|
|
778
|
-
|
|
779
|
-
|
|
780
|
-
|
|
781
|
-
|
|
782
|
-
|
|
783
|
-
|
|
784
|
-
|
|
785
|
-
|
|
786
|
-
|
|
787
|
-
|
|
788
|
-
|
|
789
|
-
|
|
790
|
-
|
|
791
|
-
|
|
792
|
-
|
|
793
|
-
|
|
794
|
-
|
|
795
|
-
|
|
796
|
-
|
|
797
|
-
|
|
798
|
-
|
|
799
|
-
|
|
800
|
-
|
|
801
|
-
|
|
802
|
-
|
|
803
|
-
|
|
804
|
-
|
|
805
|
-
|
|
806
|
-
|
|
807
|
-
|
|
808
|
-
|
|
809
|
-
|
|
810
|
-
|
|
811
|
-
|
|
812
|
-
|
|
813
|
-
|
|
814
|
-
|
|
815
|
-
|
|
816
|
-
|
|
817
|
-
|
|
818
|
-
|
|
819
|
-
|
|
820
|
-
|
|
821
|
-
|
|
822
|
-
|
|
823
|
-
|
|
824
|
-
|
|
825
|
-
|
|
826
|
-
|
|
827
|
-
|
|
828
|
-
|
|
829
|
-
|
|
830
|
-
|
|
831
|
-
|
|
832
|
-
|
|
833
|
-
|
|
834
|
-
|
|
835
|
-
|
|
836
|
-
|
|
837
|
-
|
|
838
|
-
|
|
839
|
-
|
|
840
|
-
|
|
841
|
-
|
|
842
|
-
|
|
843
|
-
|
|
844
|
-
|
|
845
|
-
|
|
846
|
-
|
|
847
|
-
|
|
848
|
-
|
|
849
|
-
|
|
850
|
-
|
|
851
|
-
|
|
852
|
-
|
|
853
|
-
|
|
854
|
-
|
|
855
|
-
|
|
856
|
-
|
|
857
|
-
|
|
858
|
-
|
|
859
|
-
|
|
860
|
-
|
|
861
|
-
|
|
862
|
-
|
|
863
|
-
|
|
864
|
-
|
|
865
|
-
|
|
866
|
-
|
|
867
|
-
|
|
868
|
-
|
|
869
|
-
|
|
870
|
-
|
|
871
|
-
|
|
872
|
-
|
|
873
|
-
|
|
874
|
-
|
|
875
|
-
|
|
876
|
-
|
|
877
|
-
|
|
878
|
-
|
|
879
|
-
|
|
880
|
-
|
|
881
|
-
|
|
882
|
-
|
|
883
|
-
|
|
884
|
-
|
|
885
|
-
|
|
886
|
-
|
|
887
|
-
|
|
888
|
-
|
|
889
|
-
|
|
890
|
-
|
|
891
|
-
|
|
892
|
-
|
|
893
|
-
|
|
894
|
-
|
|
895
|
-
|
|
896
|
-
|
|
897
|
-
|
|
898
|
-
|
|
899
|
-
|
|
900
|
-
|
|
901
|
-
|
|
902
|
-
|
|
903
|
-
|
|
904
|
-
|
|
905
|
-
|
|
906
|
-
|
|
907
|
-
|
|
908
|
-
|
|
909
|
-
|
|
910
|
-
|
|
911
|
-
|
|
912
|
-
|
|
913
|
-
|
|
914
|
-
|
|
915
|
-
|
|
916
|
-
|
|
917
|
-
|
|
918
|
-
|
|
919
|
-
|
|
920
|
-
|
|
921
|
-
|
|
922
|
-
|
|
923
|
-
|
|
924
|
-
|
|
925
|
-
|
|
926
|
-
|
|
927
|
-
|
|
928
|
-
|
|
929
|
-
|
|
930
|
-
|
|
931
|
-
|
|
932
|
-
|
|
933
|
-
|
|
934
|
-
|
|
935
|
-
|
|
936
|
-
|
|
739
|
+
|
|
740
|
+
|
|
741
|
+
|
|
742
|
+
|
|
743
|
+
|
|
744
|
+
|
|
745
|
+
|
|
746
|
+
|
|
747
|
+
|
|
748
|
+
|
|
749
|
+
|
|
750
|
+
|
|
751
|
+
|
|
752
|
+
|
|
753
|
+
|
|
754
|
+
|
|
755
|
+
|
|
756
|
+
|
|
757
|
+
|
|
758
|
+
|
|
759
|
+
|
|
760
|
+
|
|
761
|
+
|
|
762
|
+
|
|
763
|
+
|
|
764
|
+
|
|
765
|
+
|
|
766
|
+
|
|
767
|
+
|
|
768
|
+
|
|
769
|
+
|
|
770
|
+
|
|
771
|
+
|
|
772
|
+
|
|
773
|
+
|
|
774
|
+
|
|
775
|
+
|
|
776
|
+
|
|
777
|
+
|
|
778
|
+
|
|
779
|
+
|
|
780
|
+
|
|
781
|
+
|
|
782
|
+
|
|
783
|
+
|
|
784
|
+
|
|
785
|
+
|
|
786
|
+
|
|
787
|
+
|
|
788
|
+
|
|
789
|
+
|
|
790
|
+
|
|
791
|
+
|
|
792
|
+
|
|
793
|
+
|
|
794
|
+
|
|
795
|
+
|
|
796
|
+
|
|
797
|
+
|
|
798
|
+
|
|
799
|
+
|
|
800
|
+
|
|
801
|
+
|
|
802
|
+
|
|
803
|
+
|
|
804
|
+
|
|
805
|
+
|
|
806
|
+
|
|
807
|
+
|
|
808
|
+
|
|
809
|
+
|
|
810
|
+
|
|
811
|
+
|
|
812
|
+
|
|
813
|
+
|
|
814
|
+
|
|
815
|
+
|
|
816
|
+
|
|
817
|
+
|
|
818
|
+
|
|
819
|
+
|
|
820
|
+
|
|
821
|
+
|
|
822
|
+
|
|
823
|
+
|
|
824
|
+
|
|
825
|
+
|
|
826
|
+
|
|
827
|
+
|
|
828
|
+
|
|
829
|
+
|
|
830
|
+
|
|
831
|
+
|
|
832
|
+
|
|
833
|
+
|
|
834
|
+
|
|
835
|
+
|
|
836
|
+
|
|
837
|
+
|
|
838
|
+
|
|
839
|
+
|
|
840
|
+
|
|
841
|
+
|
|
842
|
+
|
|
843
|
+
|
|
844
|
+
|
|
845
|
+
|
|
846
|
+
|
|
847
|
+
|
|
848
|
+
|
|
849
|
+
|
|
850
|
+
|
|
851
|
+
|
|
852
|
+
|
|
853
|
+
|
|
854
|
+
|
|
855
|
+
|
|
856
|
+
|
|
857
|
+
|
|
858
|
+
|
|
859
|
+
|
|
860
|
+
|
|
861
|
+
|
|
862
|
+
|
|
863
|
+
|
|
864
|
+
|
|
865
|
+
|
|
866
|
+
|
|
867
|
+
|
|
868
|
+
|
|
869
|
+
|
|
870
|
+
|
|
871
|
+
|
|
872
|
+
|
|
873
|
+
|
|
874
|
+
|
|
875
|
+
|
|
876
|
+
|
|
877
|
+
|
|
878
|
+
|
|
879
|
+
|
|
880
|
+
|
|
881
|
+
|
|
882
|
+
|
|
883
|
+
|
|
884
|
+
|
|
885
|
+
|
|
886
|
+
|
|
887
|
+
|
|
888
|
+
|
|
889
|
+
|
|
890
|
+
|
|
891
|
+
|
|
892
|
+
|
|
893
|
+
|
|
894
|
+
|
|
895
|
+
|
|
896
|
+
|
|
897
|
+
|
|
898
|
+
|
|
899
|
+
|
|
900
|
+
|
|
901
|
+
|
|
902
|
+
|
|
903
|
+
|
|
904
|
+
|
|
905
|
+
|
|
906
|
+
|
|
907
|
+
|
|
908
|
+
|
|
909
|
+
|
|
910
|
+
|
|
911
|
+
|
|
912
|
+
|
|
913
|
+
|
|
914
|
+
|
|
915
|
+
|
|
916
|
+
|
|
917
|
+
|
|
918
|
+
|
|
919
|
+
|
|
920
|
+
|
|
921
|
+
|
|
922
|
+
|
|
923
|
+
|
|
924
|
+
|
|
925
|
+
|
|
926
|
+
|
|
927
|
+
|
|
928
|
+
|
|
929
|
+
|
|
930
|
+
|
|
931
|
+
|
|
932
|
+
|
|
933
|
+
|
|
934
|
+
|
|
935
|
+
|
|
936
|
+
|
|
937
937
|
{
|
|
938
938
|
column: "assembleCells.cellBarcodesWithFoundGroups",
|
|
939
939
|
id: "assemble-cells-cell-barcodes-with-found-groups",
|
|
@@ -1180,93 +1180,96 @@ getQcReportColumns := func(hasUmi, isSingleCell, sampleIdAxisSpec, chains) {
|
|
|
1180
1180
|
"pl7.app/label": "Unassigned Clonotypes (%)"
|
|
1181
1181
|
}
|
|
1182
1182
|
}
|
|
1183
|
-
},
|
|
1184
|
-
{
|
|
1185
|
-
column: "refineTags.CELL.outputCount",
|
|
1186
|
-
id: "refine-tags-cell-output-count",
|
|
1187
|
-
allowNA: true,
|
|
1188
|
-
naRegex: "NaN",
|
|
1189
|
-
spec: {
|
|
1190
|
-
name: "mixcr.com/reports/refineTags/CELL/outputCount",
|
|
1191
|
-
valueType: "Long",
|
|
1192
|
-
annotations: {
|
|
1193
|
-
"pl7.app/min": "0",
|
|
1194
|
-
"pl7.app/table/orderPriority": "85800",
|
|
1195
|
-
"pl7.app/table/visibility": "optional",
|
|
1196
|
-
"pl7.app/label": "Refine Tags CELL - Output Count"
|
|
1197
|
-
}
|
|
1198
|
-
}
|
|
1199
|
-
},
|
|
1200
|
-
{
|
|
1201
|
-
column: "refineTags.CELL.outputCountPercents",
|
|
1202
|
-
id: "refine-tags-cell-output-count-percents",
|
|
1203
|
-
allowNA: true,
|
|
1204
|
-
naRegex: "NaN",
|
|
1205
|
-
spec: {
|
|
1206
|
-
name: "mixcr.com/reports/refineTags/CELL/outputCountPercents",
|
|
1207
|
-
valueType: "Double",
|
|
1208
|
-
annotations: {
|
|
1209
|
-
"pl7.app/min": "0",
|
|
1210
|
-
"pl7.app/max": "100",
|
|
1211
|
-
"pl7.app/table/orderPriority": "85900",
|
|
1212
|
-
"pl7.app/table/visibility": "default",
|
|
1213
|
-
"pl7.app/label": "Refine Tags CELL - Output Count (%)"
|
|
1214
|
-
}
|
|
1215
|
-
}
|
|
1216
|
-
},
|
|
1217
|
-
{
|
|
1218
|
-
column: "refineTags.CELL.outputDiversity",
|
|
1219
|
-
id: "refine-tags-cell-output-diversity",
|
|
1220
|
-
allowNA: true,
|
|
1221
|
-
naRegex: "NaN",
|
|
1222
|
-
spec: {
|
|
1223
|
-
name: "mixcr.com/reports/refineTags/CELL/outputDiversity",
|
|
1224
|
-
valueType: "Long",
|
|
1225
|
-
annotations: {
|
|
1226
|
-
"pl7.app/min": "0",
|
|
1227
|
-
"pl7.app/table/orderPriority": "86000",
|
|
1228
|
-
"pl7.app/table/visibility": "optional",
|
|
1229
|
-
"pl7.app/label": "Refine Tags CELL - Output Diversity"
|
|
1230
|
-
}
|
|
1231
|
-
}
|
|
1232
|
-
},
|
|
1233
|
-
{
|
|
1234
|
-
column: "refineTags.CELL.outputDiversityPercents",
|
|
1235
|
-
id: "refine-tags-cell-output-diversity-percents",
|
|
1236
|
-
allowNA: true,
|
|
1237
|
-
naRegex: "NaN",
|
|
1238
|
-
spec: {
|
|
1239
|
-
name: "mixcr.com/reports/refineTags/CELL/outputDiversityPercents",
|
|
1240
|
-
valueType: "Double",
|
|
1241
|
-
annotations: {
|
|
1242
|
-
"pl7.app/min": "0",
|
|
1243
|
-
"pl7.app/max": "100",
|
|
1244
|
-
"pl7.app/table/orderPriority": "86100",
|
|
1245
|
-
"pl7.app/table/visibility": "default",
|
|
1246
|
-
"pl7.app/label": "Refine Tags CELL - Output Diversity (%)"
|
|
1247
|
-
}
|
|
1248
|
-
}
|
|
1249
1183
|
}]
|
|
1250
1184
|
|
|
1251
|
-
for
|
|
1185
|
+
for cellTag in cellTags {
|
|
1252
1186
|
singleCellColumns += [{
|
|
1253
|
-
column: "
|
|
1254
|
-
id: "
|
|
1187
|
+
column: "refineTags." + cellTag + ".outputCount",
|
|
1188
|
+
id: "refine-tags-" + cellTag + "-output-count",
|
|
1189
|
+
allowNA: true,
|
|
1190
|
+
naRegex: "NaN",
|
|
1191
|
+
spec: {
|
|
1192
|
+
name: "mixcr.com/reports/refineTags/CELL/outputCount",
|
|
1193
|
+
valueType: "Long",
|
|
1194
|
+
annotations: {
|
|
1195
|
+
"pl7.app/min": "0",
|
|
1196
|
+
"pl7.app/table/orderPriority": "85800",
|
|
1197
|
+
"pl7.app/table/visibility": "optional",
|
|
1198
|
+
"pl7.app/label": "Refine Tags " + cellTag + " - Output Count"
|
|
1199
|
+
}
|
|
1200
|
+
}
|
|
1201
|
+
},
|
|
1202
|
+
{
|
|
1203
|
+
column: "refineTags." + cellTag + ".outputCountPercents",
|
|
1204
|
+
id: "refine-tags-" + cellTag + "-output-count-percents",
|
|
1205
|
+
allowNA: true,
|
|
1206
|
+
naRegex: "NaN",
|
|
1207
|
+
spec: {
|
|
1208
|
+
name: "mixcr.com/reports/refineTags/CELL/outputCountPercents",
|
|
1209
|
+
valueType: "Double",
|
|
1210
|
+
annotations: {
|
|
1211
|
+
"pl7.app/min": "0",
|
|
1212
|
+
"pl7.app/max": "100",
|
|
1213
|
+
"pl7.app/table/orderPriority": "85900",
|
|
1214
|
+
"pl7.app/table/visibility": "default",
|
|
1215
|
+
"pl7.app/label": "Refine Tags " + cellTag + " - Output Count (%)"
|
|
1216
|
+
}
|
|
1217
|
+
}
|
|
1218
|
+
},
|
|
1219
|
+
{
|
|
1220
|
+
column: "refineTags." + cellTag + ".outputDiversity",
|
|
1221
|
+
id: "refine-tags-" + cellTag + "-output-diversity",
|
|
1255
1222
|
allowNA: true,
|
|
1256
|
-
naRegex: "",
|
|
1223
|
+
naRegex: "NaN",
|
|
1257
1224
|
spec: {
|
|
1258
|
-
name: "mixcr.com/reports/
|
|
1225
|
+
name: "mixcr.com/reports/refineTags/CELL/outputDiversity",
|
|
1259
1226
|
valueType: "Long",
|
|
1260
1227
|
annotations: {
|
|
1261
1228
|
"pl7.app/min": "0",
|
|
1262
|
-
"pl7.app/table/orderPriority": "
|
|
1229
|
+
"pl7.app/table/orderPriority": "86000",
|
|
1263
1230
|
"pl7.app/table/visibility": "optional",
|
|
1264
|
-
"pl7.app/label": "
|
|
1231
|
+
"pl7.app/label": "Refine Tags " + cellTag + " - Output Diversity"
|
|
1232
|
+
}
|
|
1233
|
+
}
|
|
1234
|
+
},
|
|
1235
|
+
{
|
|
1236
|
+
column: "refineTags." + cellTag + ".outputDiversityPercents",
|
|
1237
|
+
id: "refine-tags-" + cellTag + "-output-diversity-percents",
|
|
1238
|
+
allowNA: true,
|
|
1239
|
+
naRegex: "NaN",
|
|
1240
|
+
spec: {
|
|
1241
|
+
name: "mixcr.com/reports/refineTags/CELL/outputDiversityPercents",
|
|
1242
|
+
valueType: "Double",
|
|
1243
|
+
annotations: {
|
|
1244
|
+
"pl7.app/min": "0",
|
|
1245
|
+
"pl7.app/max": "100",
|
|
1246
|
+
"pl7.app/table/orderPriority": "86100",
|
|
1247
|
+
"pl7.app/table/visibility": "default",
|
|
1248
|
+
"pl7.app/label": "Refine Tags " + cellTag + " - Output Diversity (%)"
|
|
1265
1249
|
}
|
|
1266
1250
|
}
|
|
1267
1251
|
}]
|
|
1268
1252
|
}
|
|
1269
1253
|
|
|
1254
|
+
|
|
1255
|
+
|
|
1256
|
+
|
|
1257
|
+
|
|
1258
|
+
|
|
1259
|
+
|
|
1260
|
+
|
|
1261
|
+
|
|
1262
|
+
|
|
1263
|
+
|
|
1264
|
+
|
|
1265
|
+
|
|
1266
|
+
|
|
1267
|
+
|
|
1268
|
+
|
|
1269
|
+
|
|
1270
|
+
|
|
1271
|
+
|
|
1272
|
+
|
|
1270
1273
|
columns := baseColumns
|
|
1271
1274
|
if hasUmi {
|
|
1272
1275
|
columns = columns + dataWithUmiColumns
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|