Mercurial > repos > lecorguille > msnbase_readmsdata
annotate msnbase_readmsdata.r @ 9:3d8a68b45153 draft
planemo upload for repository https://github.com/workflow4metabolomics/xcms commit f0d42bca2f34c58c04b55e5990058d479c0ae639
| author | lecorguille |
|---|---|
| date | Fri, 08 Feb 2019 09:55:50 -0500 |
| parents | 8705b9de3e6c |
| children | 84533814b1d5 |
| rev | line source |
|---|---|
|
0
24f7d4e5c186
planemo upload for repository https://github.com/workflow4metabolomics/xcms commit f01148783819c37e474790dbd56619862960448a-dirty
lecorguille
parents:
diff
changeset
|
1 #!/usr/bin/env Rscript |
|
24f7d4e5c186
planemo upload for repository https://github.com/workflow4metabolomics/xcms commit f01148783819c37e474790dbd56619862960448a-dirty
lecorguille
parents:
diff
changeset
|
2 |
|
24f7d4e5c186
planemo upload for repository https://github.com/workflow4metabolomics/xcms commit f01148783819c37e474790dbd56619862960448a-dirty
lecorguille
parents:
diff
changeset
|
3 # ----- LOG FILE ----- |
|
24f7d4e5c186
planemo upload for repository https://github.com/workflow4metabolomics/xcms commit f01148783819c37e474790dbd56619862960448a-dirty
lecorguille
parents:
diff
changeset
|
4 log_file <- file("log.txt", open="wt") |
|
24f7d4e5c186
planemo upload for repository https://github.com/workflow4metabolomics/xcms commit f01148783819c37e474790dbd56619862960448a-dirty
lecorguille
parents:
diff
changeset
|
5 sink(log_file) |
|
24f7d4e5c186
planemo upload for repository https://github.com/workflow4metabolomics/xcms commit f01148783819c37e474790dbd56619862960448a-dirty
lecorguille
parents:
diff
changeset
|
6 sink(log_file, type = "output") |
|
24f7d4e5c186
planemo upload for repository https://github.com/workflow4metabolomics/xcms commit f01148783819c37e474790dbd56619862960448a-dirty
lecorguille
parents:
diff
changeset
|
7 |
|
24f7d4e5c186
planemo upload for repository https://github.com/workflow4metabolomics/xcms commit f01148783819c37e474790dbd56619862960448a-dirty
lecorguille
parents:
diff
changeset
|
8 |
|
24f7d4e5c186
planemo upload for repository https://github.com/workflow4metabolomics/xcms commit f01148783819c37e474790dbd56619862960448a-dirty
lecorguille
parents:
diff
changeset
|
9 # ----- PACKAGE ----- |
|
24f7d4e5c186
planemo upload for repository https://github.com/workflow4metabolomics/xcms commit f01148783819c37e474790dbd56619862960448a-dirty
lecorguille
parents:
diff
changeset
|
10 cat("\tSESSION INFO\n") |
|
24f7d4e5c186
planemo upload for repository https://github.com/workflow4metabolomics/xcms commit f01148783819c37e474790dbd56619862960448a-dirty
lecorguille
parents:
diff
changeset
|
11 |
|
24f7d4e5c186
planemo upload for repository https://github.com/workflow4metabolomics/xcms commit f01148783819c37e474790dbd56619862960448a-dirty
lecorguille
parents:
diff
changeset
|
12 #Import the different functions |
|
24f7d4e5c186
planemo upload for repository https://github.com/workflow4metabolomics/xcms commit f01148783819c37e474790dbd56619862960448a-dirty
lecorguille
parents:
diff
changeset
|
13 source_local <- function(fname){ argv <- commandArgs(trailingOnly=FALSE); base_dir <- dirname(substring(argv[grep("--file=", argv)], 8)); source(paste(base_dir, fname, sep="/")) } |
|
24f7d4e5c186
planemo upload for repository https://github.com/workflow4metabolomics/xcms commit f01148783819c37e474790dbd56619862960448a-dirty
lecorguille
parents:
diff
changeset
|
14 source_local("lib.r") |
|
24f7d4e5c186
planemo upload for repository https://github.com/workflow4metabolomics/xcms commit f01148783819c37e474790dbd56619862960448a-dirty
lecorguille
parents:
diff
changeset
|
15 |
|
24f7d4e5c186
planemo upload for repository https://github.com/workflow4metabolomics/xcms commit f01148783819c37e474790dbd56619862960448a-dirty
lecorguille
parents:
diff
changeset
|
16 pkgs <- c("MSnbase","batch") |
|
24f7d4e5c186
planemo upload for repository https://github.com/workflow4metabolomics/xcms commit f01148783819c37e474790dbd56619862960448a-dirty
lecorguille
parents:
diff
changeset
|
17 loadAndDisplayPackages(pkgs) |
|
24f7d4e5c186
planemo upload for repository https://github.com/workflow4metabolomics/xcms commit f01148783819c37e474790dbd56619862960448a-dirty
lecorguille
parents:
diff
changeset
|
18 cat("\n\n"); |
|
24f7d4e5c186
planemo upload for repository https://github.com/workflow4metabolomics/xcms commit f01148783819c37e474790dbd56619862960448a-dirty
lecorguille
parents:
diff
changeset
|
19 |
|
24f7d4e5c186
planemo upload for repository https://github.com/workflow4metabolomics/xcms commit f01148783819c37e474790dbd56619862960448a-dirty
lecorguille
parents:
diff
changeset
|
20 |
|
24f7d4e5c186
planemo upload for repository https://github.com/workflow4metabolomics/xcms commit f01148783819c37e474790dbd56619862960448a-dirty
lecorguille
parents:
diff
changeset
|
21 # ----- ARGUMENTS ----- |
|
24f7d4e5c186
planemo upload for repository https://github.com/workflow4metabolomics/xcms commit f01148783819c37e474790dbd56619862960448a-dirty
lecorguille
parents:
diff
changeset
|
22 cat("\tARGUMENTS INFO\n") |
|
24f7d4e5c186
planemo upload for repository https://github.com/workflow4metabolomics/xcms commit f01148783819c37e474790dbd56619862960448a-dirty
lecorguille
parents:
diff
changeset
|
23 args <- parseCommandArgs(evaluate = FALSE) #interpretation of arguments given in command line as an R list of objects |
|
24f7d4e5c186
planemo upload for repository https://github.com/workflow4metabolomics/xcms commit f01148783819c37e474790dbd56619862960448a-dirty
lecorguille
parents:
diff
changeset
|
24 write.table(as.matrix(args), col.names=F, quote=F, sep='\t') |
|
24f7d4e5c186
planemo upload for repository https://github.com/workflow4metabolomics/xcms commit f01148783819c37e474790dbd56619862960448a-dirty
lecorguille
parents:
diff
changeset
|
25 |
|
24f7d4e5c186
planemo upload for repository https://github.com/workflow4metabolomics/xcms commit f01148783819c37e474790dbd56619862960448a-dirty
lecorguille
parents:
diff
changeset
|
26 cat("\n\n") |
|
24f7d4e5c186
planemo upload for repository https://github.com/workflow4metabolomics/xcms commit f01148783819c37e474790dbd56619862960448a-dirty
lecorguille
parents:
diff
changeset
|
27 |
|
24f7d4e5c186
planemo upload for repository https://github.com/workflow4metabolomics/xcms commit f01148783819c37e474790dbd56619862960448a-dirty
lecorguille
parents:
diff
changeset
|
28 |
|
24f7d4e5c186
planemo upload for repository https://github.com/workflow4metabolomics/xcms commit f01148783819c37e474790dbd56619862960448a-dirty
lecorguille
parents:
diff
changeset
|
29 # ----- PROCESSING INFILE ----- |
|
24f7d4e5c186
planemo upload for repository https://github.com/workflow4metabolomics/xcms commit f01148783819c37e474790dbd56619862960448a-dirty
lecorguille
parents:
diff
changeset
|
30 cat("\tARGUMENTS PROCESSING INFO\n") |
|
24f7d4e5c186
planemo upload for repository https://github.com/workflow4metabolomics/xcms commit f01148783819c37e474790dbd56619862960448a-dirty
lecorguille
parents:
diff
changeset
|
31 |
|
24f7d4e5c186
planemo upload for repository https://github.com/workflow4metabolomics/xcms commit f01148783819c37e474790dbd56619862960448a-dirty
lecorguille
parents:
diff
changeset
|
32 |
|
24f7d4e5c186
planemo upload for repository https://github.com/workflow4metabolomics/xcms commit f01148783819c37e474790dbd56619862960448a-dirty
lecorguille
parents:
diff
changeset
|
33 cat("\n\n") |
|
24f7d4e5c186
planemo upload for repository https://github.com/workflow4metabolomics/xcms commit f01148783819c37e474790dbd56619862960448a-dirty
lecorguille
parents:
diff
changeset
|
34 |
|
24f7d4e5c186
planemo upload for repository https://github.com/workflow4metabolomics/xcms commit f01148783819c37e474790dbd56619862960448a-dirty
lecorguille
parents:
diff
changeset
|
35 # ----- INFILE PROCESSING ----- |
|
24f7d4e5c186
planemo upload for repository https://github.com/workflow4metabolomics/xcms commit f01148783819c37e474790dbd56619862960448a-dirty
lecorguille
parents:
diff
changeset
|
36 cat("\tINFILE PROCESSING INFO\n") |
|
24f7d4e5c186
planemo upload for repository https://github.com/workflow4metabolomics/xcms commit f01148783819c37e474790dbd56619862960448a-dirty
lecorguille
parents:
diff
changeset
|
37 |
|
24f7d4e5c186
planemo upload for repository https://github.com/workflow4metabolomics/xcms commit f01148783819c37e474790dbd56619862960448a-dirty
lecorguille
parents:
diff
changeset
|
38 # Handle infiles |
|
24f7d4e5c186
planemo upload for repository https://github.com/workflow4metabolomics/xcms commit f01148783819c37e474790dbd56619862960448a-dirty
lecorguille
parents:
diff
changeset
|
39 if (!exists("singlefile")) singlefile <- NULL |
|
24f7d4e5c186
planemo upload for repository https://github.com/workflow4metabolomics/xcms commit f01148783819c37e474790dbd56619862960448a-dirty
lecorguille
parents:
diff
changeset
|
40 if (!exists("zipfile")) zipfile <- NULL |
|
24f7d4e5c186
planemo upload for repository https://github.com/workflow4metabolomics/xcms commit f01148783819c37e474790dbd56619862960448a-dirty
lecorguille
parents:
diff
changeset
|
41 rawFilePath <- getRawfilePathFromArguments(singlefile, zipfile, args) |
|
24f7d4e5c186
planemo upload for repository https://github.com/workflow4metabolomics/xcms commit f01148783819c37e474790dbd56619862960448a-dirty
lecorguille
parents:
diff
changeset
|
42 zipfile <- rawFilePath$zipfile |
|
24f7d4e5c186
planemo upload for repository https://github.com/workflow4metabolomics/xcms commit f01148783819c37e474790dbd56619862960448a-dirty
lecorguille
parents:
diff
changeset
|
43 singlefile <- rawFilePath$singlefile |
|
24f7d4e5c186
planemo upload for repository https://github.com/workflow4metabolomics/xcms commit f01148783819c37e474790dbd56619862960448a-dirty
lecorguille
parents:
diff
changeset
|
44 directory <- retrieveRawfileInTheWorkingDirectory(singlefile, zipfile) |
|
24f7d4e5c186
planemo upload for repository https://github.com/workflow4metabolomics/xcms commit f01148783819c37e474790dbd56619862960448a-dirty
lecorguille
parents:
diff
changeset
|
45 |
|
24f7d4e5c186
planemo upload for repository https://github.com/workflow4metabolomics/xcms commit f01148783819c37e474790dbd56619862960448a-dirty
lecorguille
parents:
diff
changeset
|
46 # Check some character issues |
|
24f7d4e5c186
planemo upload for repository https://github.com/workflow4metabolomics/xcms commit f01148783819c37e474790dbd56619862960448a-dirty
lecorguille
parents:
diff
changeset
|
47 md5sumList <- list("origin" = getMd5sum(directory)) |
|
24f7d4e5c186
planemo upload for repository https://github.com/workflow4metabolomics/xcms commit f01148783819c37e474790dbd56619862960448a-dirty
lecorguille
parents:
diff
changeset
|
48 checkXmlStructure(directory) |
|
24f7d4e5c186
planemo upload for repository https://github.com/workflow4metabolomics/xcms commit f01148783819c37e474790dbd56619862960448a-dirty
lecorguille
parents:
diff
changeset
|
49 checkFilesCompatibilityWithXcms(directory) |
|
24f7d4e5c186
planemo upload for repository https://github.com/workflow4metabolomics/xcms commit f01148783819c37e474790dbd56619862960448a-dirty
lecorguille
parents:
diff
changeset
|
50 |
|
24f7d4e5c186
planemo upload for repository https://github.com/workflow4metabolomics/xcms commit f01148783819c37e474790dbd56619862960448a-dirty
lecorguille
parents:
diff
changeset
|
51 |
|
24f7d4e5c186
planemo upload for repository https://github.com/workflow4metabolomics/xcms commit f01148783819c37e474790dbd56619862960448a-dirty
lecorguille
parents:
diff
changeset
|
52 cat("\n\n") |
|
24f7d4e5c186
planemo upload for repository https://github.com/workflow4metabolomics/xcms commit f01148783819c37e474790dbd56619862960448a-dirty
lecorguille
parents:
diff
changeset
|
53 |
|
24f7d4e5c186
planemo upload for repository https://github.com/workflow4metabolomics/xcms commit f01148783819c37e474790dbd56619862960448a-dirty
lecorguille
parents:
diff
changeset
|
54 |
|
24f7d4e5c186
planemo upload for repository https://github.com/workflow4metabolomics/xcms commit f01148783819c37e474790dbd56619862960448a-dirty
lecorguille
parents:
diff
changeset
|
55 # ----- MAIN PROCESSING INFO ----- |
|
24f7d4e5c186
planemo upload for repository https://github.com/workflow4metabolomics/xcms commit f01148783819c37e474790dbd56619862960448a-dirty
lecorguille
parents:
diff
changeset
|
56 cat("\tMAIN PROCESSING INFO\n") |
|
24f7d4e5c186
planemo upload for repository https://github.com/workflow4metabolomics/xcms commit f01148783819c37e474790dbd56619862960448a-dirty
lecorguille
parents:
diff
changeset
|
57 |
|
24f7d4e5c186
planemo upload for repository https://github.com/workflow4metabolomics/xcms commit f01148783819c37e474790dbd56619862960448a-dirty
lecorguille
parents:
diff
changeset
|
58 |
|
24f7d4e5c186
planemo upload for repository https://github.com/workflow4metabolomics/xcms commit f01148783819c37e474790dbd56619862960448a-dirty
lecorguille
parents:
diff
changeset
|
59 cat("\t\tCOMPUTE\n") |
|
24f7d4e5c186
planemo upload for repository https://github.com/workflow4metabolomics/xcms commit f01148783819c37e474790dbd56619862960448a-dirty
lecorguille
parents:
diff
changeset
|
60 |
|
24f7d4e5c186
planemo upload for repository https://github.com/workflow4metabolomics/xcms commit f01148783819c37e474790dbd56619862960448a-dirty
lecorguille
parents:
diff
changeset
|
61 ## Get the full path to the files |
|
24f7d4e5c186
planemo upload for repository https://github.com/workflow4metabolomics/xcms commit f01148783819c37e474790dbd56619862960448a-dirty
lecorguille
parents:
diff
changeset
|
62 files <- getMSFiles(directory) |
|
24f7d4e5c186
planemo upload for repository https://github.com/workflow4metabolomics/xcms commit f01148783819c37e474790dbd56619862960448a-dirty
lecorguille
parents:
diff
changeset
|
63 |
|
24f7d4e5c186
planemo upload for repository https://github.com/workflow4metabolomics/xcms commit f01148783819c37e474790dbd56619862960448a-dirty
lecorguille
parents:
diff
changeset
|
64 cat("\t\t\tCreate a phenodata data.frame\n") |
|
24f7d4e5c186
planemo upload for repository https://github.com/workflow4metabolomics/xcms commit f01148783819c37e474790dbd56619862960448a-dirty
lecorguille
parents:
diff
changeset
|
65 s_groups <- sapply(files, function(x) tail(unlist(strsplit(dirname(x),"/")), n=1)) |
|
24f7d4e5c186
planemo upload for repository https://github.com/workflow4metabolomics/xcms commit f01148783819c37e474790dbd56619862960448a-dirty
lecorguille
parents:
diff
changeset
|
66 s_name <- tools::file_path_sans_ext(basename(files)) |
|
24f7d4e5c186
planemo upload for repository https://github.com/workflow4metabolomics/xcms commit f01148783819c37e474790dbd56619862960448a-dirty
lecorguille
parents:
diff
changeset
|
67 pd <- data.frame(sample_name=s_name, sample_group=s_groups, stringsAsFactors=FALSE) |
|
24f7d4e5c186
planemo upload for repository https://github.com/workflow4metabolomics/xcms commit f01148783819c37e474790dbd56619862960448a-dirty
lecorguille
parents:
diff
changeset
|
68 print(pd) |
|
24f7d4e5c186
planemo upload for repository https://github.com/workflow4metabolomics/xcms commit f01148783819c37e474790dbd56619862960448a-dirty
lecorguille
parents:
diff
changeset
|
69 |
|
24f7d4e5c186
planemo upload for repository https://github.com/workflow4metabolomics/xcms commit f01148783819c37e474790dbd56619862960448a-dirty
lecorguille
parents:
diff
changeset
|
70 cat("\t\t\tLoad Raw Data\n") |
|
24f7d4e5c186
planemo upload for repository https://github.com/workflow4metabolomics/xcms commit f01148783819c37e474790dbd56619862960448a-dirty
lecorguille
parents:
diff
changeset
|
71 raw_data <- readMSData(files=files, pdata = new("NAnnotatedDataFrame", pd), mode="onDisk") |
|
24f7d4e5c186
planemo upload for repository https://github.com/workflow4metabolomics/xcms commit f01148783819c37e474790dbd56619862960448a-dirty
lecorguille
parents:
diff
changeset
|
72 |
|
24f7d4e5c186
planemo upload for repository https://github.com/workflow4metabolomics/xcms commit f01148783819c37e474790dbd56619862960448a-dirty
lecorguille
parents:
diff
changeset
|
73 # Transform the files absolute pathways into relative pathways |
|
24f7d4e5c186
planemo upload for repository https://github.com/workflow4metabolomics/xcms commit f01148783819c37e474790dbd56619862960448a-dirty
lecorguille
parents:
diff
changeset
|
74 raw_data@processingData@files <- sub(paste(getwd(), "/", sep="") , "", raw_data@processingData@files) |
|
24f7d4e5c186
planemo upload for repository https://github.com/workflow4metabolomics/xcms commit f01148783819c37e474790dbd56619862960448a-dirty
lecorguille
parents:
diff
changeset
|
75 |
|
24f7d4e5c186
planemo upload for repository https://github.com/workflow4metabolomics/xcms commit f01148783819c37e474790dbd56619862960448a-dirty
lecorguille
parents:
diff
changeset
|
76 # Create a sampleMetada file |
|
24f7d4e5c186
planemo upload for repository https://github.com/workflow4metabolomics/xcms commit f01148783819c37e474790dbd56619862960448a-dirty
lecorguille
parents:
diff
changeset
|
77 sampleNamesList <- getSampleMetadata(xdata=raw_data, sampleMetadataOutput="sampleMetadata.tsv") |
|
24f7d4e5c186
planemo upload for repository https://github.com/workflow4metabolomics/xcms commit f01148783819c37e474790dbd56619862960448a-dirty
lecorguille
parents:
diff
changeset
|
78 |
|
2
fa17ee3bc9ce
planemo upload for repository https://github.com/workflow4metabolomics/xcms commit 5e066c50d2e4ac6d5796b53331cbd3198ab8c4f9-dirty
lecorguille
parents:
0
diff
changeset
|
79 cat("\t\t\tCompute and Store TIC and BPI\n") |
|
fa17ee3bc9ce
planemo upload for repository https://github.com/workflow4metabolomics/xcms commit 5e066c50d2e4ac6d5796b53331cbd3198ab8c4f9-dirty
lecorguille
parents:
0
diff
changeset
|
80 chromTIC <- chromatogram(raw_data, aggregationFun = "sum") |
|
fa17ee3bc9ce
planemo upload for repository https://github.com/workflow4metabolomics/xcms commit 5e066c50d2e4ac6d5796b53331cbd3198ab8c4f9-dirty
lecorguille
parents:
0
diff
changeset
|
81 chromBPI <- chromatogram(raw_data, aggregationFun = "max") |
|
fa17ee3bc9ce
planemo upload for repository https://github.com/workflow4metabolomics/xcms commit 5e066c50d2e4ac6d5796b53331cbd3198ab8c4f9-dirty
lecorguille
parents:
0
diff
changeset
|
82 |
|
0
24f7d4e5c186
planemo upload for repository https://github.com/workflow4metabolomics/xcms commit f01148783819c37e474790dbd56619862960448a-dirty
lecorguille
parents:
diff
changeset
|
83 cat("\n\n") |
|
24f7d4e5c186
planemo upload for repository https://github.com/workflow4metabolomics/xcms commit f01148783819c37e474790dbd56619862960448a-dirty
lecorguille
parents:
diff
changeset
|
84 |
|
24f7d4e5c186
planemo upload for repository https://github.com/workflow4metabolomics/xcms commit f01148783819c37e474790dbd56619862960448a-dirty
lecorguille
parents:
diff
changeset
|
85 # ----- EXPORT ----- |
|
24f7d4e5c186
planemo upload for repository https://github.com/workflow4metabolomics/xcms commit f01148783819c37e474790dbd56619862960448a-dirty
lecorguille
parents:
diff
changeset
|
86 |
|
24f7d4e5c186
planemo upload for repository https://github.com/workflow4metabolomics/xcms commit f01148783819c37e474790dbd56619862960448a-dirty
lecorguille
parents:
diff
changeset
|
87 cat("\tMSnExp OBJECT INFO\n") |
|
24f7d4e5c186
planemo upload for repository https://github.com/workflow4metabolomics/xcms commit f01148783819c37e474790dbd56619862960448a-dirty
lecorguille
parents:
diff
changeset
|
88 print(raw_data) |
|
24f7d4e5c186
planemo upload for repository https://github.com/workflow4metabolomics/xcms commit f01148783819c37e474790dbd56619862960448a-dirty
lecorguille
parents:
diff
changeset
|
89 cat("\t\tphenoData\n") |
|
24f7d4e5c186
planemo upload for repository https://github.com/workflow4metabolomics/xcms commit f01148783819c37e474790dbd56619862960448a-dirty
lecorguille
parents:
diff
changeset
|
90 print(raw_data@phenoData@data) |
|
24f7d4e5c186
planemo upload for repository https://github.com/workflow4metabolomics/xcms commit f01148783819c37e474790dbd56619862960448a-dirty
lecorguille
parents:
diff
changeset
|
91 cat("\n\n") |
|
24f7d4e5c186
planemo upload for repository https://github.com/workflow4metabolomics/xcms commit f01148783819c37e474790dbd56619862960448a-dirty
lecorguille
parents:
diff
changeset
|
92 |
|
24f7d4e5c186
planemo upload for repository https://github.com/workflow4metabolomics/xcms commit f01148783819c37e474790dbd56619862960448a-dirty
lecorguille
parents:
diff
changeset
|
93 #saving R data in .Rdata file to save the variables used in the present tool |
|
2
fa17ee3bc9ce
planemo upload for repository https://github.com/workflow4metabolomics/xcms commit 5e066c50d2e4ac6d5796b53331cbd3198ab8c4f9-dirty
lecorguille
parents:
0
diff
changeset
|
94 objects2save <- c("raw_data", "zipfile", "singlefile", "md5sumList", "sampleNamesList", "chromTIC", "chromBPI") |
|
0
24f7d4e5c186
planemo upload for repository https://github.com/workflow4metabolomics/xcms commit f01148783819c37e474790dbd56619862960448a-dirty
lecorguille
parents:
diff
changeset
|
95 save(list=objects2save[objects2save %in% ls()], file="readmsdata.RData") |
|
24f7d4e5c186
planemo upload for repository https://github.com/workflow4metabolomics/xcms commit f01148783819c37e474790dbd56619862960448a-dirty
lecorguille
parents:
diff
changeset
|
96 |
|
24f7d4e5c186
planemo upload for repository https://github.com/workflow4metabolomics/xcms commit f01148783819c37e474790dbd56619862960448a-dirty
lecorguille
parents:
diff
changeset
|
97 |
|
24f7d4e5c186
planemo upload for repository https://github.com/workflow4metabolomics/xcms commit f01148783819c37e474790dbd56619862960448a-dirty
lecorguille
parents:
diff
changeset
|
98 cat("\tDONE\n") |
