1 Introduction

A basic task in 2D single molecule tracking is to determine diffusion coefficient from molecule trajectories identified after initial image data acquisition. The trajectory (term used interchangeably with “tracks”) of a molecule is presented as a table of \(x\),\(y\)-coordinates in the unit of pixel, which then can be converted to other measurement, such as \(\mu\)m, according to the resolution of the camera. The sojourner package provides methods to import/export, process, and analyze such data. Analysis techniques include the diffusion coefficient using the mean square displacement (MSD), displacement cumulative distribution function (CDF), as well as hidden Markov model (HMM) methods (in next release) from such input data. This vignette covers basic usage of the package.

1.1 Installation

Using BiocManager:

if(!requireNamespace("BiocManager", quietly = TRUE))
    install.packages("BiocManager")
BiocManager::install("sojourner")

Or, using the release version from GitHub:

devtools::install_github("sheng-liu/sojourner", build_vignettes = TRUE)

To load the package:

library(sojourner)

2 Basic Track Data Structure

The input file for sojourner is the Diatrack (.txt or .mat), ImageJ Particle Tracker (.csv), SLIMfast (.txt), or u-track (.mat) output file. Tracks are extracted from the output files and then stored in a trackll, a list of track lists. A track denotes a single trajectory stored in a data.frame recording \(x\), \(y\), \(z\) and (video) frame number. A trackl track list is a collection of track data from one video file output. Lastly, a “trackll” is a collection of “trackl” in one folder.

In this example, the folder “SWR1_2” contains one track list with 207 tracks and one track list with 139 tracks:

folder=system.file("extdata","SWR1_2",package="sojourner")
trackll = createTrackll(folder=folder, input=3)
str(trackll,max.level=2, list.len=2)
## List of 2
##  $ SWR1_WT_140mW_image6.csv:List of 207
##   ..$ mage6.1.4.1.1        :'data.frame':    4 obs. of  4 variables:
##   ..$ mage6.2.2.2.2        :'data.frame':    2 obs. of  4 variables:
##   .. [list output truncated]
##  $ SWR1_WT_140mW_image7.csv:List of 139
##   ..$ mage7.1.2.1.1        :'data.frame':    2 obs. of  4 variables:
##   ..$ mage7.1.9.2.2        :'data.frame':    9 obs. of  4 variables:
##   .. [list output truncated]

Multiple folders can also be stored in a single trackll. Here, trackll denotes a list of folders, and each trackl contains all tracks from every file in the folder. This structure can be constructed as such:

trackll=list(FOLDER=list(track=track))
# Construct trackll from data.frame
trackl=list(track_1=dataframe_1,
            track_2=dataframe_2,
            track_3=dataframe_3,
            ...
            track_n=dataframe_n)

trackll=list(FOLDER_1=trackl_1,
             FOLDER_2=trackl_2,
             FOLDER_3=trackl_3,
             ...
             FOLDER_n=trackl_n,)

Merging all tracks from every file in the folder into a single trackl in a trackll can also be done through mergeTracks(). In this example, both track lists from “SWR1_2” were merged together to form a list of 346 tracks.

folder=system.file("extdata","SWR1_2",package="sojourner")
trackll = createTrackll(folder=folder, input=3)
trackll <- mergeTracks(folder=folder, trackll=trackll)
str(trackll,max.level=2, list.len=2)
## List of 1
##  $ SWR1_2:List of 346
##   ..$ mage6.1.4.1.1        :'data.frame':    4 obs. of  4 variables:
##   ..$ mage6.2.2.2.2        :'data.frame':    2 obs. of  4 variables:
##   .. [list output truncated]

To see the coordinates of an individual track:

# Specify the folder name and the track name
trackll[["SWR1_2"]]["mage6.1.4.1.1"]
# Alternatively, specify the index of the folder and the track
# trackll[[1]][1]
## $mage6.1.4.1.1
##       x     y z Frame
## 1 40.32 49.36 1     1
## 2 41.03 47.33 1     2
## 3 41.05 48.43 1     3
## 4 40.90 49.09 1     4

3 Track Data Manipulation

sojourner provides tools to manage and manipulate track data. Below are a few examples of the commonly used functions to import, process, and export single molecule track data.

3.1 Reading Track Data

First, read in track data taken from Diatrack, ImageJ Particle Tracker, SLIMfast, or u-track. In this example, we read data from ImageJ .csv-formatted files from “SWR1_2”.

# Designate a folder and then create trackll from ImageJ .csv data
folder=system.file("extdata","SWR1_2",package="sojourner")
trackll = createTrackll(folder=folder, input=3)

# Alternatively, use interact to open file browser and select input data type
# trackll = createTrackll(interact = TRUE)
## 
## Reading ParticleTracker file:  SWR1_WT_140mW_image6.csv ...
## 
##  mage6 read and processed.
## 
## Reading ParticleTracker file:  SWR1_WT_140mW_image7.csv ...
## 
##  mage7 read and processed.
## 
## Process complete.

3.2 Processing Track Data

3.2.1 Linking Skipped Frames

Different tracking softwares (Diatrack, ImageJ Particle Tracker, SLIMfast, u-track) often use varying algorithms to stitch together single molecule localizations into trajectories. Sometimes, a molecule can disappear for several frames and can classify single trajectories as two. linkSkippedFrames() allows users to link trajectories that skip (or do not appear for) a number of frames. In this example, all tracks that skip a maximum of 10 frames and reappear within 5 pixels are linked:

# Basic function call of linkSkippedFrames
trackll.linked <- linkSkippedFrames(trackll, tolerance = 5, maxSkip = 10)
## 
## Linking mage6 ...
## 
##  156 links found in mage6 
## 
## Linking mage7 ...
## 
##  112 links found in mage7 
## 
## Process complete.

3.2.2 Filtering Tracks by Length

filterTrack() can be used to filter out track that have lengths (defined by number of frames) that fall within a specified range. In this example, only tracks that appear for at least 7 frames are kept:

trackll.filter=filterTrack(trackll ,filter=c(7,Inf))
## applying filter, min 7   max Inf
# See the min and max length of the trackll
# trackLength() is a helper function output track length of trackll
lapply(trackLength(trackll),min)
## $SWR1_WT_140mW_image6.csv
## [1] 2
## 
## $SWR1_WT_140mW_image7.csv
## [1] 2
lapply(trackLength(trackll.filter),min)
## $SWR1_WT_140mW_image6.csv
## [1] 7
## 
## $SWR1_WT_140mW_image7.csv
## [1] 7

3.2.3 Trim Tracks to a Length

trimTrack() is used to to trim/cutoff tracks. Given a specified range of track lengths (defined by number of frames), only tracks that fall within the range are kept, otherwise trimmed to the upper limit. In this example, all tracks with lengths greater than 20 have their lengths trimmed to 20:

trackll.trim=trimTrack(trackll,trimmer=c(1,20))
## applying trimmer, min 1   max 20
# See the min and max length of the trackll
# trackLength() is a helper function output track length of trackll
lapply(trackLength(trackll),max)
## $SWR1_WT_140mW_image6.csv
## [1] 30
## 
## $SWR1_WT_140mW_image7.csv
## [1] 15
lapply(trackLength(trackll.trim),max)
## $SWR1_WT_140mW_image6.csv
## [1] 20
## 
## $SWR1_WT_140mW_image7.csv
## [1] 15

3.2.4 Applying Image Masks

In order to apply a binary image mask to track data, one can use maskTracks(). In this example, we use image masks for each track file generated by thresholding the initial fluorescent glow of the nucleus. See man pages for indexCell(), filterOnCell(), and sampleTracks() for more advanced functionality (e.g. separating tracks, filtering, and sampling by masked cells).

# Basic masking with folder path with image masks
folder = system.file("extdata","ImageJ",package="sojourner")
trackll = createTrackll(folder, input = 3)
trackll.filter=filterTrack(trackll ,filter=c(7,Inf))
trackll.masked <- maskTracks(folder = folder, trackll = trackll.filter)

To plot the masks:

# Plot mask
plotMask(folder)

To plot the nuclear overlay of the un-masked data:

# If nuclear image is available
plotNucTrackOverlay(folder=folder,trackll=trackll)

To plot the nuclear overlay of the masked data:

# If nuclear image is available
plotNucTrackOverlay(folder=folder,trackll=trackll.masked)

3.3 Exporting Track Data

To export a trackll, use exportTrackll() to save track data into a .csv file in the working directory. This function saves the data into the same format used by ImageJ Particle Tracker, fully preserving all track information, and maintaining short read/write computation time and readability in Excel/etc.

# Basic function call to exportTrackll into working directory
exportTrackll(trackll)

# Read exported trackll saved in working directory
trackll.2 <- createTrackll(folder = getwd(), input = 3)

4 Plotting Tracks

The first thing one may want to do is to see how the tracks look like in 2-D space. The track name is useful in this case if one wants to see specific trajectories and its associated movies.

All one needs to do is to create a .csv file contains trajectory names in its first column. sojourner package contains such an example .csv file.

# specify the path of the file containing trajectory index names, index file
index.file2=system.file("extdata","INDEX","indexFile2.csv",
package="sojourner")
# specify the folders containing the output files
folder1=system.file("extdata","SWR1",package="sojourner")
folder2=system.file("extdata","HTZ1",package="sojourner")
# plot trajectories specified in the trajectory index file
plotTrackFromIndex(index.file=index.file2,
                   movie.folder=c(folder1,folder2),input=3)

The output plots the tracks based on its name, with the information contained in its name (i.e. start frame and length/duration), one can also pull out its movie. See ? plotTrack for more plotting options.

5 Distribution of Trajectory Lengths

One may be interested to see the distribution of the (time) length of the tracks. This can be done by calculating and plotting the dwell times:

dwellTime(trackll,plot=TRUE) # default t.interval=10, x.scale=c(0,250)

6 Calculating Diffusion Coefficient Using MSD-Based Method

Below is an example of simple analysis workflow using diffusion coefficient.

6.1 Data Import

We will need to first create a basic data structure (trackll, i.e. list of track list) for all analysis. It contains the trajectory information of all tracks in a specified folder, using createTrackll() function.

# Specify folder with data
folder=system.file("extdata","HSF",package="sojourner")

# Create track list
trackll<-createTrackll(folder=folder, interact=FALSE, input=3, ab.track=FALSE, cores=1, frameRecord=TRUE)

# Take a look at the list by 
str(trackll,1)

6.2 Data Clean Up

We then clean up the data with filters and masks. In this case, we select only the tracks with 3 frames or more, and remove tracks that is outside of the nuclei.

# Filter/choose tracks 3 frames or longer for all analysis
trackll.fi<-filterTrack(trackll=trackll, filter=c(min=3,max=Inf))

# Apply mask and remove tracks outside nuclei
trackll.fi.ma<-maskTracks(folder,trackll.fi)

6.3 Visulization of Trajectories

To see how the tracks look like, we can plot the tracks over cell image (e.g. bright field image or nuclei overall fluorescence) to see the distribution of tracks.

# Overlay all tracks on nuclei
plotNucTrackOverlay(folder=folder,trackll=trackll.fi,cores=1, max.pixel=128,nrow=2,ncol=2,width=16,height=16)
# Overlay tracks after nuclear mask
plotNucTrackOverlay(folder=folder,trackll=trackll.fi.ma,cores=1, max.pixel=128,nrow=2,ncol=2,width=16,height=16)
# Overlay tracks color coded for diffusion coefficient
plotTrackOverlay_Dcoef(trackll=trackll.fi.ma, Dcoef.range=c(-2,1), rsquare=0.8, t.interval=0.01, dt=6, resolution=0.107)

We used Dcoef.range to select tracks whose Dcoef is within the range. Other tracks will not be plotted.

6.4 Analysis

We then move on to the analysis of the biophysical properties of a molecule, e.g. mean square displacement (MSD), diffusion coefficient (Dcoef), residence time (RT) etc.

For an overall view of one factor, we may want to merge all tracks in a folder.

# Merge tracks from different image files in the folder
trackll.fi.ma.me=c(mergeTracks(folder, trackll.fi.ma))

And sometimes, we may have data of same type in multiple folders and want to combine them together.

folder2=system.file('extdata','HSF_2',package='sojourner')
trackll2=createTrackll(folder2,input=2, cores = 1)
trackll2=maskTracks(folder2,trackll2)
trackll2=mergeTracks(folder2,trackll2)

# Combine the tracklls together
Trackll.combine=combineTrackll(trackll=c(trackll,trackll2),merged=TRUE)

Now we can calculate msd, Dcoef, and residence time of a molecule.

# calculate MSD for all tracks longer than 3 frames
msd(Trackll.combine,dt=20,resolution=0.107,summarize=TRUE,cores=1,plot=TRUE,output=TRUE)

For some analysis, we may just want to a portion of the trajectory, this can be done by using trimTrack() function.

trackll.combine.trim=trimTrack(Trackll.combine,trimmer=c(1,11))

msd(trackll.combine.trim,dt=10,resolution=0.107,summarize=TRUE,cores=1,plot=TRUE,output=TRUE)
Dcoef(trackll=trackll.combine.trim,dt=5, filter=c(min=6,max=Inf), method="static", plot=TRUE, output=TRUE)

## calculating displacement CDF

# Calculate all dislacement frequency and displacement CDF for all tracks longer than 3 frames
displacementCDF(trackll.combine.trim, dt=1, plot=TRUE, output=TRUE)
## Analysis for Residence time. 

# Calculate 1-CDF (survival probability) of the dwell time/residence time of all tracks (not trimmed) longer than 3 frames
compare_RT_CDF(trackll= Trackll.combine, x.max=100, filter=c(min=3,max=Inf), t.interval=0.5, output=FALSE)
# Calculate residence time of tracks by 2-component exponential decay fitting of the 1-CDF curve
fitRT(trackll= trackll.fi.ma.me, x.max=100, N.min=1.5, t.interval=0.5)

This is just a brief example of analysis one can do using the statistic tools provided in sojourner package. Further information regarding function usage or analysis techniques can be found in function help docs and on https://sheng-liu.github.io/sojourner/ website.

7 sojournerGUI: A Shiny Interface

A Shiny app implementation of many of the core features of sojourner. Namely, the basic abilities of reading trackll video files (of all supported types), processing tracks (linking, filtering, trimming, masking, merging), and analyzing tracks (MSD, Dcoef, CDF, and dwell time). The application interface provides a code-free GUI, suited with dynamic and interactive plots, that is relatively easy to use. The app is still in alpha development and only supports the base functions needed for educational capabilities and such. A command history log, named command_history.R in the working directory, will be continuously updated each time a command is called for diagnostic, replication, and tracking purposes.

7.1 Launching

sojournerGUI()

7.2 Helpful Tips

  • If in doubt, check the console output of each command inputted through the GUI. These will show error and warning messages as needed.

  • Normal distribution, compare folder, and kernel density masking features are currently not supported.

  • Reading tracks depends on a running session of R, as it uses its native file.choose() function.

8 SessionInfo

Here is the sessionInfo() on which this document was compiled:

sessionInfo()
## R version 4.2.0 RC (2022-04-19 r82224)
## Platform: x86_64-pc-linux-gnu (64-bit)
## Running under: Ubuntu 20.04.4 LTS
## 
## Matrix products: default
## BLAS:   /home/biocbuild/bbs-3.15-bioc/R/lib/libRblas.so
## LAPACK: /home/biocbuild/bbs-3.15-bioc/R/lib/libRlapack.so
## 
## locale:
##  [1] LC_CTYPE=en_US.UTF-8       LC_NUMERIC=C              
##  [3] LC_TIME=en_GB              LC_COLLATE=C              
##  [5] LC_MONETARY=en_US.UTF-8    LC_MESSAGES=en_US.UTF-8   
##  [7] LC_PAPER=en_US.UTF-8       LC_NAME=C                 
##  [9] LC_ADDRESS=C               LC_TELEPHONE=C            
## [11] LC_MEASUREMENT=en_US.UTF-8 LC_IDENTIFICATION=C       
## 
## attached base packages:
## [1] stats     graphics  grDevices utils     datasets  methods   base     
## 
## other attached packages:
## [1] sojourner_1.10.0 BiocStyle_2.24.0
## 
## loaded via a namespace (and not attached):
##   [1] segmented_1.5-0     pixmap_0.4-12       bitops_1.0-7       
##   [4] EBImage_4.38.0      RColorBrewer_1.1-3  tools_4.2.0        
##   [7] bslib_0.3.1         utf8_1.2.2          R6_2.5.1           
##  [10] DBI_1.1.2           BiocGenerics_0.42.0 colorspace_2.0-3   
##  [13] raster_3.5-15       sp_1.4-7            tidyselect_1.1.2   
##  [16] gridExtra_2.3       compiler_4.2.0      textshaping_0.3.6  
##  [19] cli_3.3.0           shinyjs_2.1.0       labeling_0.4.2     
##  [22] bookdown_0.26       sass_0.4.1          scales_1.2.0       
##  [25] hexbin_1.28.2       systemfonts_1.0.4   stringr_1.4.0      
##  [28] digest_0.6.29       tiff_0.1-11         fftwtools_0.9-11   
##  [31] mixtools_1.2.0      rmarkdown_2.14      R.utils_2.11.0     
##  [34] jpeg_0.1-9          pkgconfig_2.0.3     htmltools_0.5.2    
##  [37] highr_0.9           fastmap_1.1.0       htmlwidgets_1.5.4  
##  [40] rlang_1.0.2         shiny_1.7.1         farver_2.1.0       
##  [43] jquerylib_0.1.4     generics_0.1.2      zoo_1.8-10         
##  [46] jsonlite_1.8.0      mclust_5.4.9        dplyr_1.0.8        
##  [49] R.oo_1.24.0         RCurl_1.98-1.6      magrittr_2.0.3     
##  [52] nls2_0.2            R.matlab_3.6.2      Matrix_1.4-1       
##  [55] Rcpp_1.0.8.3        munsell_0.5.0       fansi_1.0.3        
##  [58] abind_1.4-5         lifecycle_1.0.1     R.methodsS3_1.8.1  
##  [61] terra_1.5-21        stringi_1.7.6       yaml_2.3.5         
##  [64] MASS_7.3-57         plyr_1.8.7          grid_4.2.0         
##  [67] parallel_4.2.0      promises_1.2.0.1    crayon_1.5.1       
##  [70] rasterVis_0.51.2    lattice_0.20-45     splines_4.2.0      
##  [73] magick_2.7.3        locfit_1.5-9.5      knitr_1.38         
##  [76] pillar_1.7.0        boot_1.3-28         reshape2_1.4.4     
##  [79] codetools_0.2-18    glue_1.6.2          evaluate_0.15      
##  [82] latticeExtra_0.6-29 data.table_1.14.2   BiocManager_1.30.17
##  [85] png_0.1-7           vctrs_0.4.1         httpuv_1.6.5       
##  [88] gtable_0.3.0        purrr_0.3.4         kernlab_0.9-30     
##  [91] assertthat_0.2.1    sampSurf_0.7-6      ggplot2_3.3.5      
##  [94] xfun_0.30           mime_0.12           xtable_1.8-4       
##  [97] later_1.3.0         ragg_1.2.2          survival_3.3-1     
## [100] viridisLite_0.4.0   truncnorm_1.0-8     minpack.lm_1.2-2   
## [103] tibble_3.1.6        mltools_0.3.5       fitdistrplus_1.1-8 
## [106] ellipsis_0.3.2