Hi,
This is a simple statement. It belongs to a program sourced by shiny. The message gets displayed in the UI.
After a series of statements like the mapFns below, the output of the cat statement that follows gets printed many times. Why is this happening?
mapFns<- mapFns[grep("_SiteCounts.tsv", mapFns, invert=T)]
if (length(mapFns)>0) {
cat("There may be merge_MAP files in OUTpath, among these files:\n")
print(data.frame(mapFns))
}