This file is indexed.

/usr/lib/R/site-library/BiocInstaller/scripts/workflows.R is in r-bioc-biocinstaller 1.28.0-1.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
source("http://bioconductor.org/biocLite.R")

workflowInstall <- function(pkg, ...)
{
    repos <- c(biocinstallRepos(), 
               sprintf("%s//bioconductor.org/packages/%s/workflows", 
                       BiocInstaller:::.protocol(), 
                       BiocInstaller::biocVersion()))
    
    install.packages(pkg, repos=repos, ...)
}