Skip to content

Commit

Permalink
test R
Browse files Browse the repository at this point in the history
  • Loading branch information
mspodda committed May 23, 2024
1 parent e219a32 commit d6d7d34
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions workflow/snakefile_final.smk
Original file line number Diff line number Diff line change
Expand Up @@ -402,8 +402,8 @@ rule polyA_r_script:
output:
polyA_204 = config['datadirs']['r'] + "polyA_filtered_3UTR204.csv",
polyA_220 = config['datadirs']['r'] + "polyA_filtered_3UTR220.csv"
script:
"{params.r_polya}"
shell:
"Rscript {params.r_polya}"

## Plot the ratio boxplot
rule custom_r_script:
Expand All @@ -412,8 +412,8 @@ rule custom_r_script:
r_custom = config['scripts']['r_custom']
output:
boxplot_custom = config['datadirs']['r'] + "ratio_BRAF.pdf"
script:
"{params.r_custom}"
shell:
"Rscript {params.r_custom}"

## Plot the pie charts and the ratio boxplot
rule salmon_r_script:
Expand All @@ -424,5 +424,5 @@ rule salmon_r_script:
boxplot_salmon = config['datadirs']['r'] + "ratio_salmon.pdf",
piecharts_salmon = config['datadirs']['r'] + "pie_charts.pdf",
total_salmon = config['datadirs']['r'] + "total_salmon.pdf"
script:
"{params.r_salmon}"
shell:
"Rscript {params.r_salmon}"

0 comments on commit d6d7d34

Please sign in to comment.