view KeggCompound.R @ 1:253d531a0193 draft

planemo upload for repository https://github.com/workflow4metabolomics/lcmsmatching.git commit 36c9d8099c20a1ae848f1337c16564335dd8fb2b
author prog
date Sat, 03 Sep 2016 17:02:01 -0400
parents e66bb061af06
children
line wrap: on
line source

if ( ! exists('KeggCompound')) { # Do not load again if already loaded

	source('BiodbEntry.R')
	
	#####################
	# CLASS DECLARATION #
	#####################
	
	KeggCompound <- setRefClass("KeggCompound", contains = 'BiodbEntry')
	
	###########
	# FACTORY #
	###########
	
	createKeggCompoundFromTxt <- function(contents, drop = TRUE) {
	
		library(stringr)

		compounds <- list()
	
		# Define fields regex
		regex <- character()
		regex[[BIODB.NAME]] <- "^NAME\\s+([^,;]+)"
		regex[[BIODB.CHEBI.ID]] <- "^\\s+ChEBI:\\s+(\\S+)"
		regex[[BIODB.LIPIDMAPS.ID]] <- "^\\s+LIPIDMAPS:\\s+(\\S+)"

		for (text in contents) {

			# Create instance
			compound <- KeggCompound$new()

			lines <- strsplit(text, "\n")
			for (s in lines[[1]]) {

				# Test generic regex
				parsed <- FALSE
				for (field in names(regex)) {
					g <- str_match(s, regex[[field]])
					if ( ! is.na(g[1,1])) {
						compound$setField(field, g[1,2])
						parsed <- TRUE
						break
					}
				}
				if (parsed)
					next
	
				# ACCESSION
				{
					# ENZYME ID
					g <- str_match(s, "^ENTRY\\s+EC\\s+(\\S+)")
					if ( ! is.na(g[1,1]))
						compound$setField(BIODB.ACCESSION, paste('ec', g[1,2], sep = ':'))

					# ENTRY ID
					else {
						g <- str_match(s, "^ENTRY\\s+(\\S+)\\s+Compound")
						if ( ! is.na(g[1,1]))
							compound$setField(BIODB.ACCESSION, paste('cpd', g[1,2], sep = ':'))

						# OTHER ID
						else {
							g <- str_match(s, "^ENTRY\\s+(\\S+)")
							if ( ! is.na(g[1,1]))
								compound$setField(BIODB.ACCESSION, g[1,2])
						}
					}
	
					# ORGANISM
					g <- str_match(s, "^ORGANISM\\s+(\\S+)")
					if ( ! is.na(g[1,1]))
						compound$setField(BIODB.ACCESSION, paste(g[1,2], compound$getField(BIODB.ACCESSION), sep = ':'))
				}
			}

			compounds <- c(compounds, compound)
		}

		# Replace elements with no accession id by NULL
		compounds <- lapply(compounds, function(x) if (is.na(x$getField(BIODB.ACCESSION))) NULL else x)

		# If the input was a single element, then output a single object
		if (drop && length(contents) == 1)
			compounds <- compounds[[1]]
	
		return(compounds)
	}
}