Skip to content

Commit

Permalink
panel S0f
Browse files Browse the repository at this point in the history
  • Loading branch information
tractatus committed Sep 8, 2023
1 parent 2c493b2 commit 161117a
Show file tree
Hide file tree
Showing 6 changed files with 60 additions and 0 deletions.
5 changes: 5 additions & 0 deletions data/gels/csv/2023-09-07_chickenAlexa488.csv
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
,Area,Mean,Min,Max
1,0.005,1514.039,392,2812
2,0.005,876.945,353,1285
3,0.005,882.211,315,1346
4,0.005,1089.857,349,1692
Binary file added data/gels/roi/2023-09-07_RoiSet.zip
Binary file not shown.
Binary file added pdf/S02f.pdf
Binary file not shown.
30 changes: 30 additions & 0 deletions supplementary_fig02.md
Original file line number Diff line number Diff line change
Expand Up @@ -546,3 +546,33 @@ quartz.save(file='./pdf/S02c.pdf', type='pdf')

quartz_off_screen
2

# Bargraph of TFP-ester labeling gels

``` r
gel <- read.table('./data/gels/csv/2023-09-07_chickenAlexa488.csv', header = TRUE, sep = ',')

refDOL <- 5 #ThermoFisher A21200

gel$norm <- (gel$Mean/gel$Mean[1])*refDOL

quartz(width=3.6, height=6.1)

par(mar=c(6,4,1,0))
bar <- barplot(gel$norm, ylab='Degree of Labeling (DOL)', las=1, xaxt="n")
labs <- c('Chicken-Alexa488', '1:3', '1:9', '1:15')
text(cex=1, x=c(bar[1]-.55, bar[-1]), y=c(-0.8,rep(-0.4,3)), labs, xpd=TRUE, srt=45)
text(mean(bar[-1]), -1.1, 'Goat-PEG4-TCO\nAZdye488-bis(PEG2-Tz)', xpd=TRUE)
lines(c(bar[2]-.25, bar[4]+.25), rep(-0.75, 2), xpd = TRUE)
```

![](supplementary_fig02_files/figure-commonmark/unnamed-chunk-25-1.png)

Save as PDF:

``` r
quartz.save(file='./pdf/S02f.pdf', type='pdf')
```

quartz_off_screen
2
25 changes: 25 additions & 0 deletions supplementary_fig02.qmd
Original file line number Diff line number Diff line change
Expand Up @@ -330,3 +330,28 @@ Lets save the figure as a PDF:
```{r}
quartz.save(file='./pdf/S02c.pdf', type='pdf')
```

# Bargraph of TFP-ester labeling gels

```{r}
gel <- read.table('./data/gels/csv/2023-09-07_chickenAlexa488.csv', header = TRUE, sep = ',')
refDOL <- 5 #ThermoFisher A21200
gel$norm <- (gel$Mean/gel$Mean[1])*refDOL
quartz(width=3.6, height=6.1)
par(mar=c(6,4,1,0))
bar <- barplot(gel$norm, ylab='Degree of Labeling (DOL)', las=1, xaxt="n")
labs <- c('Chicken-Alexa488', '1:3', '1:9', '1:15')
text(cex=1, x=c(bar[1]-.55, bar[-1]), y=c(-0.8,rep(-0.4,3)), labs, xpd=TRUE, srt=45)
text(mean(bar[-1]), -1.1, 'Goat-PEG4-TCO\nAZdye488-bis(PEG2-Tz)', xpd=TRUE)
lines(c(bar[2]-.25, bar[4]+.25), rep(-0.75, 2), xpd = TRUE)
```

Save as PDF:

```{r}
quartz.save(file='./pdf/S02f.pdf', type='pdf')
```
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.

0 comments on commit 161117a

Please sign in to comment.