Skip to content

Commit

Permalink
Trying fix github workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
seraidarian committed Jun 28, 2024
1 parent fc72714 commit 22c1d32
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion R/class-AbundanceDensityPlot.R
Original file line number Diff line number Diff line change
Expand Up @@ -244,7 +244,7 @@ setMethod(".exportOutput", "AbundanceDensityPlot",
contents <- .generateOutput(x, se, all_memory=all_memory, all_contents=all_contents)
newpath <- paste0(.getEncodedName(x), ".pdf")

pdf(newpath, width=slot(x, .organizationHeight)/75, height=slot(x, .organizationWidth)*2)
pdf(newpath, width=slot(x, "PanelHeight")/75, height=slot(x, "PanelWidth")*2)
print(contents$plot)
dev.off()

Expand Down
2 changes: 1 addition & 1 deletion R/class-AbundancePlot.R
Original file line number Diff line number Diff line change
Expand Up @@ -213,7 +213,7 @@ setMethod(".exportOutput", "AbundancePlot",
contents <- .generateOutput(x, se, all_memory=all_memory, all_contents=all_contents)
newpath <- paste0(.getEncodedName(x), ".pdf")

pdf(newpath, width=slot(x, .organizationHeight)/75, height=slot(x, .organizationWidth)*2)
pdf(newpath, width=slot(x, "PanelHeight")/75, height=slot(x, "PanelWidth")*2)
print(contents$plot)
dev.off()

Expand Down
2 changes: 1 addition & 1 deletion R/class-RDAPlot.R
Original file line number Diff line number Diff line change
Expand Up @@ -272,7 +272,7 @@ setMethod(".exportOutput", "RDAPlot",
contents <- .generateOutput(x, se, all_memory=all_memory, all_contents=all_contents)
newpath <- paste0(.getEncodedName(x), ".pdf")

pdf(newpath, width=slot(x, .organizationHeight)/75, height=slot(x, .organizationWidth)*2)
pdf(newpath, width=slot(x, "PanelHeight")/75, height=slot(x, "PanelWidth")*2)
print(contents$plot)
dev.off()

Expand Down
2 changes: 1 addition & 1 deletion R/class-RowTreePlot.R
Original file line number Diff line number Diff line change
Expand Up @@ -240,7 +240,7 @@ setMethod(".exportOutput", "RowTreePlot",
contents <- .generateOutput(x, se, all_memory=all_memory, all_contents=all_contents)
newpath <- paste0(.getEncodedName(x), ".pdf")

pdf(newpath, width=slot(x, .organizationHeight)/75, height=slot(x, .organizationWidth)*2)
pdf(newpath, width=slot(x, "PanelHeight")/75, height=slot(x, "PanelWidth")*2)
print(contents$plot)
dev.off()

Expand Down

0 comments on commit 22c1d32

Please sign in to comment.