1 Introduction

lineagespot is a framework written in R, and aims to identify SARS-CoV-2 related mutations based on a single (or a list) of variant(s) file(s) (i.e., variant calling format). The method can facilitate the detection of SARS-CoV-2 lineages in wastewater samples using next generation sequencing, and attempts to infer the potential distribution of the SARS-CoV-2 lineages.

2 Quick start

2.1 Installation

lineagespot is distributed as a Bioconductor package and requires R (version “4.1”), which can be installed on any operating system from CRAN, and Bioconductor (version “3.14”).

To install lineagespot package enter the following commands in your R session:

if (!requireNamespace("BiocManager", quietly = TRUE)) {
    install.packages("BiocManager")
}

BiocManager::install("lineagespot")

## Check that you have a valid Bioconductor installation
BiocManager::valid()

2.2 Raw data analysis

Example fastq files are provided through zenodo. For the pre processing steps of them, the bioinformatics analysis pipeline is provided here.

2.3 Running lineagespot

Once lineagespot is successfully installed, it can be loaded as follow:

library(lineagespot)

lineagespot can be run by calling one function that implements the overall pipeline:

results <- lineagespot(vcf_folder = system.file("extdata", "vcf-files", 
                                                package = "lineagespot"),

                      gff3_path = system.file("extdata", 
                                              "NC_045512.2_annot.gff3", 
                                              package = "lineagespot"),

                      ref_folder = system.file("extdata", "ref", 
                                               package = "lineagespot"))

2.4 Explore the results

The function returns three tables:

  • An overall variant table containing all variants included in the input VCF files, along with the related information (gene, location etc.)
# overall table
head(results$variants.table)
#>          CHROM POS                         ID   REF  ALT DP AD_ref AD_alt
#> 1: NC_045512.2 328   NC_045512.2;328;ACA;ACCA   ACA ACCA 36     34      1
#> 2: NC_045512.2 355        NC_045512.2;355;C;T     C    T 42     41      1
#> 3: NC_045512.2 366        NC_045512.2;366;C;T     C    T 42     28     14
#> 4: NC_045512.2 401 NC_045512.2;401;CTTAA;CTAA CTTAA CTAA 37     35      2
#> 5: NC_045512.2 406     NC_045512.2;406;AGA;AA   AGA   AA 35     34      1
#> 6: NC_045512.2 421        NC_045512.2;421;C;A     C    A 35     34      1
#>    Gene_Name  Nt_alt AA_alt         AF codon_num                sample
#> 1:     ORF1a  64dupC  Q22fs 0.02777778        21 SampleA_freebayes_ann
#> 2:     ORF1a   90C>T   G30G 0.02380952        30 SampleA_freebayes_ann
#> 3:     ORF1a  101C>T   S34F 0.33333333        34 SampleA_freebayes_ann
#> 4:     ORF1a 138delT  D48fs 0.05405405        46 SampleA_freebayes_ann
#> 5:     ORF1a 142delG  D48fs 0.02857143        47 SampleA_freebayes_ann
#> 6:     ORF1a  156C>A   G52G 0.02857143        52 SampleA_freebayes_ann
  • A table with the identified overlaps/hits between the variant table and the given lineage reports.
# lineages' hits
head(results$lineage.hits)
#>    Gene_Name AA_alt                sample   DP AD_alt        AF lineage
#> 1:         M   I82T SampleC_freebayes_ann 3984   2770 0.6952811    AY.1
#> 2:         N   D63G SampleC_freebayes_ann 2180    787 0.3610092    AY.1
#> 3:         N  R203M SampleC_freebayes_ann 4147   4125 0.9946950    AY.1
#> 4:         N  G215C SampleC_freebayes_ann 4477   2574 0.5749386    AY.1
#> 5:         N  D377Y SampleC_freebayes_ann 4271   1623 0.3800047    AY.1
#> 6:     ORF1a A1306S SampleC_freebayes_ann 2202   1267 0.5753860    AY.1
  • A lineage report table where metrics for the abundance of each lineage are computed. To this end, the mean AF (allele frequence) of the variants per lineage, the mean AF of the unique variants per lineage and the non-zero min. AF of the lineage’s unique variants are computed. Moreover given a AF threshold the number of variants in each sample is computed along with the resulting proportion (Number of variants to the number of lineage rules).
# lineagespot report
head(results$lineage.report)
#>    lineage                sample     meanAF meanAF_uniq minAF_uniq_nonzero N
#> 1:    AY.1 SampleA_freebayes_ann 0.08333333   0.0000000                 NA 1
#> 2:    AY.1 SampleB_freebayes_ann 0.08333333   0.0000000                 NA 1
#> 3:    AY.1 SampleC_freebayes_ann 0.43162568   0.0000000                 NA 6
#> 4:    AY.2 SampleA_freebayes_ann 0.07692308   0.0000000                 NA 1
#> 5:    AY.2 SampleB_freebayes_ann 0.07692308   0.0000000                 NA 1
#> 6:    AY.2 SampleC_freebayes_ann 0.33117826   0.1198191          0.1594335 4
#>    lineage N. rules lineage prop.
#> 1:               31    0.03225806
#> 2:               31    0.03225806
#> 3:               31    0.19354839
#> 4:               29    0.03448276
#> 5:               29    0.03448276
#> 6:               29    0.13793103

Session info

Here is the output of sessionInfo() on the system on which this document was compiled running pandoc 2.7.3:

#> R version 4.3.1 (2023-06-16)
#> Platform: x86_64-pc-linux-gnu (64-bit)
#> Running under: Ubuntu 22.04.3 LTS
#> 
#> Matrix products: default
#> BLAS:   /home/biocbuild/bbs-3.18-bioc/R/lib/libRblas.so 
#> LAPACK: /usr/lib/x86_64-linux-gnu/lapack/liblapack.so.3.10.0
#> 
#> 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       
#> 
#> time zone: America/New_York
#> tzcode source: system (glibc)
#> 
#> attached base packages:
#> [1] stats     graphics  grDevices utils     datasets  methods   base     
#> 
#> other attached packages:
#> [1] XVector_0.42.0       GenomicRanges_1.54.0 IRanges_2.36.0      
#> [4] S4Vectors_0.40.0     lineagespot_1.6.0    RefManageR_1.4.0    
#> [7] BiocStyle_2.30.0    
#> 
#> loaded via a namespace (and not attached):
#>  [1] tidyselect_1.2.0            dplyr_1.1.3                
#>  [3] blob_1.2.4                  filelock_1.0.2             
#>  [5] Biostrings_2.70.0           bitops_1.0-7               
#>  [7] fastmap_1.1.1               RCurl_1.98-1.12            
#>  [9] BiocFileCache_2.10.0        VariantAnnotation_1.48.0   
#> [11] GenomicAlignments_1.38.0    XML_3.99-0.14              
#> [13] digest_0.6.33               timechange_0.2.0           
#> [15] lifecycle_1.0.3             KEGGREST_1.42.0            
#> [17] RSQLite_2.3.1               magrittr_2.0.3             
#> [19] compiler_4.3.1              rlang_1.1.1                
#> [21] sass_0.4.7                  progress_1.2.2             
#> [23] tools_4.3.1                 utf8_1.2.4                 
#> [25] yaml_2.3.7                  data.table_1.14.8          
#> [27] rtracklayer_1.62.0          knitr_1.44                 
#> [29] prettyunits_1.2.0           S4Arrays_1.2.0             
#> [31] curl_5.1.0                  bit_4.0.5                  
#> [33] DelayedArray_0.28.0         plyr_1.8.9                 
#> [35] xml2_1.3.5                  abind_1.4-5                
#> [37] BiocParallel_1.36.0         BiocGenerics_0.48.0        
#> [39] grid_4.3.1                  stats4_4.3.1               
#> [41] fansi_1.0.5                 biomaRt_2.58.0             
#> [43] SummarizedExperiment_1.32.0 cli_3.6.1                  
#> [45] rmarkdown_2.25              crayon_1.5.2               
#> [47] generics_0.1.3              rjson_0.2.21               
#> [49] httr_1.4.7                  DBI_1.1.3                  
#> [51] cachem_1.0.8                stringr_1.5.0              
#> [53] zlibbioc_1.48.0             parallel_4.3.1             
#> [55] AnnotationDbi_1.64.0        restfulr_0.0.15            
#> [57] BiocManager_1.30.22         matrixStats_1.0.0          
#> [59] vctrs_0.6.4                 Matrix_1.6-1.1             
#> [61] jsonlite_1.8.7              bookdown_0.36              
#> [63] hms_1.1.3                   bit64_4.0.5                
#> [65] GenomicFeatures_1.54.0      jquerylib_0.1.4            
#> [67] bibtex_0.5.1                glue_1.6.2                 
#> [69] codetools_0.2-19            lubridate_1.9.3            
#> [71] stringi_1.7.12              GenomeInfoDb_1.38.0        
#> [73] BiocIO_1.12.0               tibble_3.2.1               
#> [75] pillar_1.9.0                rappdirs_0.3.3             
#> [77] htmltools_0.5.6.1           BSgenome_1.70.0            
#> [79] GenomeInfoDbData_1.2.11     R6_2.5.1                   
#> [81] dbplyr_2.3.4                evaluate_0.22              
#> [83] lattice_0.22-5              Biobase_2.62.0             
#> [85] png_0.1-8                   backports_1.4.1            
#> [87] Rsamtools_2.18.0            memoise_2.0.1              
#> [89] bslib_0.5.1                 Rcpp_1.0.11                
#> [91] SparseArray_1.2.0           xfun_0.40                  
#> [93] MatrixGenerics_1.14.0       pkgconfig_2.0.3