Example #1
0
from registry import register_tool

__all__ = [
]

### CONSTANTS & DEFINES ###

### IMPLEMENTATION ###

class GeoLocateTool (BaseTool):
	identifier = "geolocate"
	title = "Geo-lookup"
	description = "Lookup and check geolocations."
	
	
register_tool (GeoLocateTool)


### TEST & DEBUG ###

def _doctest ():
	import doctest
	doctest.testmod ()


### MAIN ###

if __name__ == '__main__':
	main()

Example #2
0
from registry import register_tool

__all__ = [
]

### CONSTANTS & DEFINES ###

### IMPLEMENTATION ###

class TranslateSeqTool (BaseTool):
	identifier = "transseq"
	title = "Translate sequences"
	description = "Shift biosequences from one file format to another."
	
	
register_tool (TranslateSeqTool)


### TEST & DEBUG ###

def _doctest ():
	import doctest
	doctest.testmod ()


### MAIN ###

if __name__ == '__main__':
	main()

Example #3
0
from registry import register_tool

__all__ = [
]

### CONSTANTS & DEFINES ###

### IMPLEMENTATION ###

class DrawPhyloTool (BaseTool):
	identifier = "drawphylo"
	title = "Draw phylogeny"
	description = "Draw a phylogeny from a Newick representation."
	
	
register_tool (DrawPhyloTool)


### TEST & DEBUG ###

def _doctest ():
	import doctest
	doctest.testmod ()


### MAIN ###

if __name__ == '__main__':
	main()

Example #4
0
from registry import register_tool

__all__ = [
]

### CONSTANTS & DEFINES ###

### IMPLEMENTATION ###

class TransferTool (BaseTool):
	identifier = "transfer"
	title = "Transfer data"
	description = "Shift data from one repository to another."
	
	
register_tool (TransferTool)


### TEST & DEBUG ###

def _doctest ():
	import doctest
	doctest.testmod ()


### MAIN ###

if __name__ == '__main__':
	main()

Example #5
0
from registry import register_tool

__all__ = []

### CONSTANTS & DEFINES ###

### IMPLEMENTATION ###


class AnalyseSeqTool(BaseTool):
    identifier = "OVERRIDE ID IN DERIVED CLASS"
    title = "OVERRIDE TITLE IN DERIVED CLASS"
    description = "OVERRIDE ID IN DERIVED CLASS"


register_tool(AnalyseSeqTool)


### TEST & DEBUG ###


def _doctest():
    import doctest

    doctest.testmod()


### MAIN ###

if __name__ == "__main__":
    main()
Example #6
0
			required=False,
			max_length=100,
		)
		collection_desc = forms.CharField(
			label="Collection description",
			required=False,
			max_length=100,
		)
		collection_src = forms.CharField(
			label="Collection source",
			required=False,
			max_length=100,
		)

	
register_tool (LoadSeqsTool)


### TEST & DEBUG ###

def _doctest ():
	import doctest
	doctest.testmod ()


### MAIN ###

if __name__ == '__main__':
	main()

Example #7
0
from registry import register_tool

__all__ = [
]

### CONSTANTS & DEFINES ###

### IMPLEMENTATION ###

class CompareTool (BaseTool):
	identifier = "compare"
	title = "Compare repositories"
	description = "Check for shared or unique data across."
	
	
register_tool (CompareTool)


### TEST & DEBUG ###

def _doctest ():
	import doctest
	doctest.testmod ()


### MAIN ###

if __name__ == '__main__':
	main()