Content from the myGrid group

Search filter terms
Filter by category
Filter by type
Filter by tag
Filter by user
Filter by licence
Filter by wsdl
Filter by curation
Results per page:
Sort by:
Showing 351 results. Use the filters on the left and the search box below to refine the results.

Workflow EBI_InterproScan_NewServices (1)

Thumb
This workflow performs an interproscan at the EBI on sequences provided as input. The output is provided as text, xml or png. This workflow uses the new EBI services, which are asynchronous and require looping over the nested workflow (Status) until the workflow has finished. Many of the EBI services now work in this way, so you can use this workflow as an example of the invocation pattern and looping configuration.

Created: 2011-07-12 | Last updated: 2011-07-12

Credits: User Alan Williams User Katy Wolstencroft

Attributions: Workflow EBI_InterproScan_NewServices

Workflow BiomartAndEMBOSSDisease (2)

Thumb
This workflow retrieves all genes on human chromosome 22 that are associated with a disease and aligns the upstream regions with mouse and rat homologues. The alignments are plotted and corresponding sequence ids are also returned.

Created: 2011-07-12 | Last updated: 2012-03-19

Credits: User Katy Wolstencroft

Attributions: Workflow BiomartAndEMBOSSDisease

Workflow Using a Create_List script with a dot-prod... (1)

Thumb
Create_lots_of_strings gives implicit iteration over the service add_a_and_b - assume this is a service that returns two values which you now want to keep in a list [a,b]. The shim Create_list takes two single inputs, and returns a list of [in1, in2]. Configured with the Dot product list strategy it means that it will pipeline out [a1,b1], [a2,b2], [a3,b3] etc.Create_lots_of_strings gives implicit iteration over the service add_a_and_b - assume this is a service that returns two values which...

Created: 2011-02-02 | Last updated: 2011-02-02

Credits: User Stian Soiland-Reyes

Workflow Biomart and Blast (1)

Thumb
Perform Rodent BLAST sequence alignments (using DDBJ Blast) on the gene sequences for a (semi-random) selection of genes from Human sapiens chromosome 22. (Using Biomart) Referenced in the Taverna knowledge blog.

Created: 2010-12-13 | Last updated: 2010-12-13

Attributions: Workflow BLAST using DDBJ service

Creator

Pack Example R workflows


Created: 2010-12-13 10:44:04 | Last updated: 2010-12-13 16:28:58

Small workflows illustrating how R can be used within Taverna services

10 items in this pack

Comments: 0 | Viewed: 97 times | Downloaded: 40 times

Tags:

Workflow R generic example (1)

Thumb
This workflow shows how string vectors can be used to transfer a complex R object (in this case a matrix) between Rshell services

Created: 2010-11-29

Credits: User Alan Williams

Workflow R Text-file example (1)

Thumb
This workflow contains two services. The file_writer uses a File in R to output a string. The file_reader uses a File in R to input a string, the contents of which are output.

Created: 2010-11-29 | Last updated: 2010-11-29

Credits: User Alan Williams

Workflow R PNG-value example (2)

Thumb
This workflow produces a PNG plot on the figure port.

Created: 2010-11-29 | Last updated: 2010-11-29

Credits: User Alan Williams

Workflow R integer vector example (1)

Thumb
This workflow takes a list of integer values and returns a list containing 100 modulus the list's elements, and the sum of the input list's elements.

Created: 2010-11-29 | Last updated: 2010-11-29

Credits: User Alan Williams

Workflow R integer workflow (1)

Thumb
This workflow uses an Rshell service to calculate 100 modulus the integer input

Created: 2010-11-29

Credits: User Alan Williams

Workflow R string vector example (1)

Thumb
The workflow takes a list of strings and outputs a list contains the lower-cased versions of the input elements, and also a concatenation of the input elements

Created: 2010-11-26 | Last updated: 2010-11-26

Credits: User Alan Williams

Workflow R integer vector example (1)

Thumb
This workflow takes a list of integer values and returns a list containing the square of the input list's elements, and the sum of the input list's elements.

Created: 2010-11-26 | Last updated: 2010-11-26

Credits: User Alan Williams

Workflow R logical vector workflow (1)

Thumb
The workflow returns a list containing the logical inversion of the logical vector input

Created: 2010-11-26 | Last updated: 2010-11-26

Credits: User Alan Williams

Workflow R string workflow (1)

Thumb
This workflow determines the lower case version of the input string.

Created: 2010-11-26 | Last updated: 2010-11-26

Credits: User Alan Williams

Workflow R numeric workflow (1)

Thumb
This workflow uses an Rshell service to calculate the square of a numeric inputThis workflow uses an

Created: 2010-11-26

Credits: User Alan Williams

Workflow R logical workflow (1)

Thumb
Checks what the logical_input is in R. For an logical_input of TRUE - is_false should be FALSE and is_true TRUE FALSE - is_false should be TRUE and is_true FALSE For any other input values, is_false and is_true should both be NA

Created: 2010-11-26 | Last updated: 2010-11-26

Credits: User Alan Williams

Workflow Ask - title and message parameters (1)

Thumb
The ask service displays a prompt with 'Some title' and the prompt message 'Some message'. If the user presses cancel, then a service failure is generated. If the user presses OK then their input, even if it is empty, is passed to the answer port of the ask service and so to the output of the workflow.

Created: 2010-10-29

Workflow Ask - just title parameter (1)

Thumb
The ask service displays a prompt with the title 'Some title' but no prompt message. If the user presses cancel, then a service failure is generated. If the user presses OK then their input, even if it is empty, is passed to the answer port of the ask service and so to the output of the workflow.

Created: 2010-10-29 | Last updated: 2010-10-29

Workflow Ask - just message parameter (1)

Thumb
The ask service displays a prompt with no title but with the prompt message 'Some message'. If the user presses cancel, then a service failure is generated. If the user presses OK then their input, even if it is empty, is passed to the answer port of the ask service and so to the output of the workflow.

Created: 2010-10-29

Workflow Ask - no parameters (1)

Thumb
The ask service displays a prompt with no title and no prompt message. If the user presses cancel, then a service failure is generated. If the user presses OK then their input, even if it is empty, is passed to the answer port of the ask service and so to the output of the workflow.

Created: 2010-10-29

Workflow String list union - yielding empty list (1)

Thumb
The string list union service takes in two empty lists [] and [] and returns an empty list [].

Created: 2010-10-29 | Last updated: 2010-10-29

Workflow String list union - yielding non-empty list (1)

Thumb
The string list union service takes in ['a','b','c'] and ['a','e','c'] and returns a list equivalent to ['a','b','c','e'].

Created: 2010-10-29

Workflow String list intersection - yielding empty ... (1)

Thumb
The string list intersection service takes in ['a','b','c'] and ['x','y','z'] and returns the empty list [].

Created: 2010-10-29

Workflow String list intersection - yielding non em... (1)

Thumb
The string list intersection service takes in ['a','b','c'] and ['a','e','c] and returns the list ['a','c'].

Created: 2010-10-29

Workflow String list difference - yielding empty list (1)

Thumb
The string list difference service takes in ['a','b','c'] and ['a','c','b'] and returns the empty list [].

Created: 2010-10-29

Results per page:
Sort by: