Skip to content

Commit

Permalink
Merge pull request #144 from TomHarrop/ragtag_no_tmpfs
Browse files Browse the repository at this point in the history
don't write to /etc
  • Loading branch information
TomHarrop authored Oct 15, 2024
2 parents c0fbce1 + 1537e5c commit b97d17e
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions tools/plot_ragtag_paf/plot_ragtag_paf.xml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<tool id="plot_ragtag_paf" name="Plot RagTag output" version="0.0.2" profile="24.1" license="MIT">
<tool id="plot_ragtag_paf" name="Plot RagTag output" version="0.0.3" profile="24.1" license="MIT">
<description>to compare query contigs to the reference</description>
<requirements>
<container type="docker">ghcr.io/tomharrop/r-containers:r2u_24.04_cv1</container>
Expand All @@ -15,9 +15,10 @@
## Suppress R warnings about container
if [ -f /etc/R/Rprofile.site ]; then
sed -i
sed -e
'/options(bspm.version.check=FALSE)/i options(bspm.sudo = TRUE)'
/etc/R/Rprofile.site ;
/etc/R/Rprofile.site
> .Rprofile ;
fi ;
## Print the plot config to stderr
Expand All @@ -27,7 +28,7 @@
## Draw the plot
printf '\n%s\n' "Running plot_ragtag_paf.R" >&2 &&
Rscript
Rscript --no-site-file
'${__tool_directory__}/plot_ragtag_paf.R'
config.yaml
]]></command>
Expand Down

0 comments on commit b97d17e

Please sign in to comment.