@platforma-open/milaboratories.mixcr-clonotyping-2.workflow 3.20.0 → 3.21.0
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 +6 -0
- 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/export-report.tpl.tengo +10 -4
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.21.0 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
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
package/package.json
CHANGED
|
@@ -149,15 +149,21 @@ self.body(func(inputs) {
|
|
|
149
149
|
if mixcrChainsArg != "" {
|
|
150
150
|
exportFiltersCmd.arg("--chains").arg(mixcrChainsArg)
|
|
151
151
|
}
|
|
152
|
-
|
|
152
|
+
exportFiltersCmd = exportFiltersCmd.
|
|
153
153
|
arg("-isOOF").arg(featureForFlags).
|
|
154
154
|
arg("-hasStops").arg(featureForFlags).
|
|
155
155
|
arg("clones.clns").
|
|
156
156
|
addFile("clones.clns", clnsFile).
|
|
157
157
|
arg("clones.tsv").
|
|
158
|
-
saveFile("clones.tsv")
|
|
159
|
-
|
|
160
|
-
|
|
158
|
+
saveFile("clones.tsv")
|
|
159
|
+
if library {
|
|
160
|
+
if isLibraryFileGzipped {
|
|
161
|
+
exportFiltersCmd.addFile("library.json.gz", library)
|
|
162
|
+
} else {
|
|
163
|
+
exportFiltersCmd.addFile("library.json", library)
|
|
164
|
+
}
|
|
165
|
+
}
|
|
166
|
+
exportFiltersResult := exportFiltersCmd.cacheHours(3).run()
|
|
161
167
|
filterTsv := exportFiltersResult.getFile("clones.tsv")
|
|
162
168
|
dfFilters := wf.frame(filterTsv, { xsvType: "tsv", inferSchema: false, schema: [ { column: isOOFColumn, type: "String" }, { column: hasStopsColumn, type: "String" } ] })
|
|
163
169
|
dfFilters = dfFilters.withColumns(
|