@sjcrh/proteinpaint-server 2.115.0 → 2.116.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/package.json +4 -4
- package/src/app.js +5 -5
- package/utils/edge.R +1 -1
package/utils/edge.R
CHANGED
|
@@ -283,4 +283,4 @@ if (dim(read_counts)[1] * dim(read_counts)[2] < as.numeric(input$mds_cutoff)) {
|
|
|
283
283
|
#cat("Time for generating final dataframe: ", as.difftime(final_data_generation_time, unit = "secs")[3], " seconds\n")
|
|
284
284
|
|
|
285
285
|
# Output results
|
|
286
|
-
toJSON(final_output)
|
|
286
|
+
toJSON(final_output, digits = NA) # Setting digits = NA makes toJSON() use the max precision. This from ?toJSON() documentation
|