Workflows

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

Workflow Calculate molecular descriptors with OpenT... (1)

Thumb
 Queries an OpenTox ontology server for available molecular descriptor, picks one, and calculates the descriptor value for a few molecules.

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

Credits: User Egon Willighagen

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

Workflow String list difference - yielding non-empt... (1)

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

Created: 2010-10-29

Workflow Split string into string list by regular e... (2)

Thumb
The split string into string list by regular expression takes the string 'boo:and:foo' and using the specified regular expression 'o.*n' splits it into the list ['b','d:foo']

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

Workflow Split string into string list by regular e... (1)

Thumb
The split string into string list by regular expression takes the string 'boo:and:foo' and using the specified regular expression ':' splits it into the list ['boo','and','foo']

Created: 2010-10-29

Workflow Split string into string list by regular e... (1)

Thumb
The split string into string list by regular expression takes the string 'a,b,c' and using the default regular expression ',' splits it into the list ['a','b','c']

Created: 2010-10-29

Workflow Pad numeral with leading 0s - too short ta... (1)

Thumb
The pad numeral with leading 0s takes the input '12' and because the specified target length of 1 is too short, yields the output '12'.

Created: 2010-10-29

Workflow Pad numeral with leading 0s - specified ta... (1)

Thumb
The pad numeral with leading 0s takes the input '12' and pads it to the specified target length of 4, yielding the output '0012'.

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

Workflow Pad numeral with leading 0s - default targ... (1)

Thumb
The pad numeral with leading 0s takes the input '12' and pads it to the default target length of 7, yielding the output '0000012'.

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

Workflow FIlter list of strings by regex extracting... (1)

Thumb
The workflow examines the five element list split from the first service. For each element, if it contains an 'a' followed by two characters, then that triple is included in the output. Thus, for the input ['a','b','abcde','cdef','axy'], only 'abcde' and 'axy' contain a match and so ['abc', 'axy'] is output.

Created: 2010-10-29

Workflow FIlter list of strings by regex extracting... (1)

Thumb
The workflow examines the five element list split from the first service. For each element, if it contains an 'a' followed by two characters, then the two characters after the 'a' are included in the output. Thus, for the input ['a','b','abcde','cdef','axy'], only 'abcde' and 'axy' contain a match and so ['bc', 'xy'] is output.

Created: 2010-10-29

Workflow FIlter list of strings by regex with an un... (1)

Thumb
The workflow filters the five element list split from the first service and returns an empty list as no elements match.

Created: 2010-10-29

Workflow FIlter list of strings by regex with a sui... (1)

Thumb
The workflow filters the five element list split from the first service and returns the three elements that match the regular expression.

Created: 2010-10-29

Workflow Concatenate two strings (1)

Thumb
The concatenate two strings service takes the strings 'good' and 'bye' and returns the result 'goodbye'.

Created: 2010-10-29

Workflow Concatenate two strings - empty strings (1)

Thumb
The concatenate two strings service takes two empty strings and returns an empty string.

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

Workflow Byte Array to string - non empty value (1)

Thumb
The beanshell converts the string 'hello' to a byte array which is then converted back to the string 'hello' by the Byte_Array_to_string service.

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

Workflow Byte Array to string - empty value (1)

Thumb
The beanshell converts the empty string '' to a byte array which is then converted back to the empty string '' by the Byte_Array_To_string service.

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

Workflow Echo_with_occasional_failure (1)

Thumb
The Sometimes_Fails service mostly echoes the string 'hello' to the out port. Sometimes, it throws a service failure.

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

Workflow Always fails - two parameters (1)

Thumb
The always fails service generates a service failure when two parameter values are supplied.

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

Workflow Always fails - one parameter (1)

Thumb
The always fails service generates a service failure when one parameter value is supplied.

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

Workflow Always fails - no parameters (1)

Thumb
The always fails service generates a service failure when no parameter values are supplied.

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

Workflow Get web page from URL - url and base (1)

Thumb
Fetches a web page from http://www.mygrid.org.uk/tools with the base parameter as "http://www.mygrid.org.uk" and the url as "/tools". Note that when viewed, the HTML may not be rendered correctly. However, the HTML may be viewed by rendering the result as plain text.

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

Workflow Get web page from URL - just url (1)

Thumb
Fetches a web page from http://www.mygrid.org.uk/tools using just the url parameter of the service. Note that when viewed, the HTML may not be rendered correctly. However, the HTML may be viewed by rendering the result as plain text.

Created: 2010-10-29

Workflow Get image URLs from HTTP document - no images (1)

Thumb
Retrieve the web page at http://www.mygrid.org.uk/usermanual1.7/user_gettings_started.html and examine it for images. The workflow should return an empty list.

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

Workflow Get image from URL - url and base specified (1)

Thumb
Retrieve the image at http://www.mygrid.org.uk/files/2008/09/dragon-workflow.png using both the url and base parameters

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

Workflow Get image from URL - only url specified (1)

Thumb
Retrieve the image at http://www.mygrid.org.uk/files/2008/09/dragon-workflow.png using just the url parameter

Created: 2010-10-29

Workflow Remove duplicate strings (1)

Thumb
The remove duplicate strings service takes the list ['a','b','c','b','a','d'], strips out duplicate strings and outputs the result ['a','b','c','d'].

Created: 2010-10-29

Workflow Remove duplicate strings - empty list (1)

Thumb
The remove duplicate strings service takes the empty list [] and outputs the result [].

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

Workflow Merge string list to string - empty list (1)

Thumb
The merge string list to string service takes an empty list [] and outputs an empty string ''.

Created: 2010-10-28

Workflow Merge string list to a string - default se... (1)

Thumb
The merge string list to string service takes the list ['a','b','c'] and outputs the string 'a b c'.

Created: 2010-10-28

Workflow Merge string list to string - colon separator (1)

Thumb
The merge string list to string service takes the list ['a','b','c'] and using the separator ':' outputs the string 'a:b:c'.

Created: 2010-10-28

Workflow Flatten list (1)

Thumb
The flatten_list service takes the list [['a'], ['b'], ['c'], ['d']] and outputs the list ['a', 'b', 'c', 'd', 'e'].

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

Workflow Write text file - specified value (1)

Thumb
The beanshell creates an empty temporary file. The filepath to the temporary file is then passed to the Write_text_file service which writes 'hello' into the file. 'hello' is also output by the service.

Created: 2010-10-28

Workflow Write text file - overwriting content (1)

Thumb
The beanshell creates an empty temporary file. The filepath to the temporary file is then passed to the Write_text_file A service which writes the string 'hello' into the file. After service A has run, service B writes 'goodbye' into the file. The file is then read by the Read_Text_File service and its content, 'goodbye', output by the workflow.

Created: 2010-10-28

Workflow Write text file - empty string value (1)

Thumb
The beanshell creates an empty temporary file. The filepath to the temporary file is then passed to the Write_text_file service which writes the empty string '' into the file. '' is also output by the service.

Created: 2010-10-28

Workflow Read text file - several lines (1)

Thumb
The beanshell write the string 'hello' four times separated by a new lineto a temporary file. The filepath to the temporary file is then passed to the Read_text_file service which reads the file and outputs the string 'hello hello hello hello'.

Created: 2010-10-28

Workflow Read text file (1)

Thumb
The beanshell write the string 'hello' to a temporary file. The filepath to the temporary file is then passed to the Read_text_file service which reads the file and outputs the string 'hello'.

Created: 2010-10-28

Workflow Read text file - empty file (1)

Thumb
The beanshell creates an empty temporary file. The filepath to the temporary file is then passed to the Read_text_file service which reads the file and outputs the empty string ''.

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

Workflow List files by regex - single match (1)

Thumb
The create_temporary_directory beanshell creates a temporary directory and outputs the path to that directory. The populate_directory beanshell creates several files within the temporary directory. Once the directory has been populated, it is examined by the List_files_by_regex service and the file path to the one file matching 'c.*' i.e. starting with 'c' is output.

Created: 2010-10-28

Workflow List files by regex - several answers (1)

Thumb
The create_temporary_directory beanshell creates a temporary directory and outputs the path to that directory. The populate_directory beanshell creates several files within the temporary directory. Once the directory has been populated, it is examined by the List_files_by_regex service and the file paths matching the regular expression '.*i.*', i.e. those containing an 'i', are output.

Created: 2010-10-28

Workflow List files by regex - no matches (1)

Thumb
The create_temporary_directory beanshell creates a temporary directory and outputs the path to that directory. The populate_directory beanshell creates several files within the temporary directory. Once the directory has been populated, it is examined by the List_files_by_regex service. Since no files match the regular expression 'x.*' i.e. no files have a name that starts with 'x', an empty list is output.

Created: 2010-10-28

Workflow List files by regex - empty directory (1)

Thumb
The create_temporary_directory beanshell creates a temporary directory and outputs the path to that directory. The empty directory is examined by the List_files_by_regex service. Since there are no files, an empty list is output.

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

Workflow List files by extension - single match (1)

Thumb
The create_temporary_directory beanshell creates a temporary directory and outputs the path to that directory. The populate_directory beanshell creates several files within the temporary directory. Once the directory has been populated, it is examined by the List_files_by_extension service and the file path to the one file ending in ".bin" is output.

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

Workflow List files by extension - several matches (1)

Thumb
The create_temporary_directory beanshell creates a temporary directory and outputs the path to that directory. The populate_directory beanshell creates several files within the temporary directory. Once the directory has been populated, it is examined by the List_files_by_extension service and the file paths to the three files ending in ".png" are output.

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

Workflow List files by extension - no matches (1)

Thumb
The create_temporary_directory beanshell creates a temporary directory and outputs the path to that directory. The populate_directory beanshell creates several files within the temporary directory. Once the directory has been populated, it is examined by the List_files_by_extension service. Since no files end in ".fred", an empty list is output.

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

Workflow List files by extension - empty directory (1)

Thumb
The create_temporary_directory beanshell creates a temporary directory and outputs the path to that directory. The empty directory is examined by the List_files_by_extension service. Since no files end in ".png", an empty list is output.

Created: 2010-10-28

Workflow Get Environment Variables as XML (1)

Thumb
The Get_Environment_Variables_as_XML service returns an XML file containing a set of property elements each of which contains the name and value of an environment variable.The Get_Environment_Variables_as_XML service returns an XML file containing

Created: 2010-10-28

Workflow Execute cmd line app - unix - /bin/ls of t... (1)

Thumb
Note that this workflow only works on Unix systems. The get_temporary_directory beanshell returns the path to the directory in which temporary files are held. This value is passed to the args port of the execute_cmd_line_app service. The command port of that service has been defaulted to '/bin/ls'. The execute_cmd_line_app service runs the /bin/ls command on the temporary directory. The result is passed to its result port and then to the output port of the workflow.

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

Workflow Execute cmd line app - unix - /bin/ls -R o... (1)

Thumb
Note that this workflow only works on Unix systems. The get_temporary_directory beanshell returns the path to the directory in which temporary files are held. This value is passed to the create_and_populate_list beanshell which creates a list of '-R' and the path. The resultant list is passed to the args port of the Execute_cmd_line_app service. The command port of that service has been defaulted to '/bin/ls'. The execute_cmd_line_app service runs the /bin/ls -R command on the temporary ...

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

Workflow Concatenate files - multiple files (1)

Thumb
The workflow splits the string 'a,b,c,d,e' into its five elements and saves the individual strings to five temporary files. The file paths to those files are then output by the create_and_populate_temporary_file beanshell. The create_temporary_file beanshell creates a file to which the concatentation can be written. The concatenate_files service concatenates the five files and writes the result to the temporary output file. Because the displayresults port has no value, the results are not...

Created: 2010-10-28

Workflow Concatenate files - echo results but no files (1)

Thumb
The split_string_into_string_list_by_regular_expresson outputs an empty list since the string to be split is defaulted to ''. As there are no input values, the create_and_populate_temporary_file generates an empty list. The create_temporary_file beanshell creates a file to which the concatentation can be written. The concatenate_files service does not write anything to the temporary output file. Because the displayresults port has been given a default value of 'true', the empty string is ...

Created: 2010-10-28

Workflow Concatenate files - echo results and multi... (1)

Thumb
The workflow splits the string 'a,b,c,d,e' into its five elements and saves the individual strings to five temporary files. The file paths to those files are then output by the create_and_populate_temporary_file beanshell. The create_temporary_file beanshell creates a file to which the concatentation can be written. The concatenate_files service concatenates the five files and writes the result to the temporary output file. Because the displayresults port has been given a default value of...

Created: 2010-10-28

Workflow Transcribe DNA (1)

Thumb
The Transcribe DNA service takes the DNA sequence, here defaulted to 'gatcctccat' and outputs the corresponding transcribed RNA sequence, in this example, 'gauccuccau'.

Created: 2010-10-28

Workflow Reverse complement DNA (1)

Thumb
The Reverse Complement DNA service takes the DNA sequence, here defaulted to 'gatcctccat' and outputs the corresponding reverse complement sequence, in this example, 'atggaggatc'.

Created: 2010-10-28

Workflow Read SwissProt file (1)

Thumb
The Read_SwissProt_file service reads the file at the swiss_prot_file_url and converts the SwissProt data into Agave format. The result is then sent to the workflow's swiss_prot_data port.

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

Workflow Read GenBank file (1)

Thumb
The Read_GenBank_file service reads the file at the genbank_file_url and converts the GenBank data into Agave format. The result is then sent to the workflow's gen_bank_data port.

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

Workflow Encode byte[] to base64 (1)

Thumb
The encode byte[] to base 64 service encodes the bytes representing (in the local character set) 'hello'.

Created: 2010-10-28

Workflow Decode base64 to byte[] (1)

Thumb
The decode base64 to byte[] service decodes the base64 string. The byte array is then converted into the string 'Hello world'.

Created: 2010-10-28

Workflow Is Parameter Optimization Useful (1)

Thumb
This process compares two 10x10fold cross-validations with linear SVM for classification. One use the heuristic parameter choice C=1/avg(K(x,x)) and the other uses an internal 5fold cross-validation to tune the parameter C. Afterwards both performance values are compared via ANOVA and T-test to check whether there is a significant difference between both performance values. The behaviour of the optimized 10x10 XV is similar to that of the experiment 10x10fold_XV_with_optimizedSVM_classificat...

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

Workflow 10x10fold_XV_with_optimizedSVM_classification (1)

Thumb
This process performs 10 round of 10fold cross-validation for classification with a linear SVM. In each traning-phase the parameters C of the linear SVM is tuned by a 5fold cross-validation. The repetions are useful for estimating the real performance on a small sample high variance data set, e.g. microarray data.

Created: 2010-10-28

Workflow Blastn-ClustalW (1)

This workflow retrieves a sequence from NCBI Core Nucleotide, searches for similar sequences with Blastn, then feeds a set of Blastn results into the multiple alignment tool, ClustalW.

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

Credits: User Kalpana

Workflow Polygon buffer - Using pyWPS (1)

Thumb
Basic example on how to integrate a Web Processing Service (WPS) using  PyWPS's WSDL/SOAP The workflow will accept a GML file with featureCollection where polyon is described using gml:coordinate element structure. This GMl is easely generated with GDAL. The coodinate structure will be converted to WKT and used to create a polygon using shapely, the output will be a buffer polygon with a defined width. Output polygon will replace the orginal polygon and the existing XML will be return...

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

Credits: User Jorgejesus

Workflow Concatenate Examples (1)

Thumb
This process I'm using for preprocessing is concatenating the values of att2 for all the same values of att1 in att3. ps: Thanks to Matthias for his help.

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

Uploader

Workflow X-Validation with One-Class SVM (1)

Thumb
With this example process, I intend to show how one might validate predictions done with a one class classifier. RapidMiner includes the One-Class SVM (part of libsvm) as introduced by Schoelkopf. I'm very interested in feedback concerning problems with or errors in this experiment. Note that the data set (Sonar) is just a toy data set chosen for demonstration - learning a one class classifier on it won't give you any good results! DESCRIPTION The basic idea is to partition the data set...

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

Workflow Find best feature selection method. (1)

Thumb
This processes searches for the best method for feature selection and the best feature subset size. Inside a parameter loop the number of selected features and the feature selection methods are evaluated with a 10fold cross-validation. The Feature Selection Extension ( https://sourceforge.net/projects/rm-featselext ) is required. BUGFIX: Please note that the plugin downloaded before 5th November contains a bug. Due to a bug in RM the TopK-operator sorted the features in the wrong direction. ...

Created: 2010-10-19 | Last updated: 2010-12-10

Workflow Recursive Feature Elimination with fully o... (1)

Thumb
The Process shows how you can use the RecursiveFeatureElimination-Operator of the Feature Selection Extension ( https://sourceforge.net/projects/rm-featselext) to select relevant features from a highdimensional dataset.

Created: 2010-10-19 | Last updated: 2010-12-10

Workflow Automatical Disabling / Enabling of Operat... (1)

Thumb
This meta process shows another possibility for automatically optimizing the process layout. The operator "OperatorEnabler" can be used to enable or disable one of its children. Together with one of the parameter optimization operators this can be used to check which operators should be used for optimal results. This is especially useful in order to determine which preprocessing operators should be used for a particular data set - learner combination or if you want to automatically test diffe...

Created: 2010-10-13

Uploader

Workflow test P-GRADE wf (1)

Thumb
 This workflow serves only testing purposes.

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

Credits: User Pgtest

Uploader

Workflow BioXSD example workflow (1)

Thumb
An attempt to implement in the BioXSD workflow described by Kalas et al., (2010) Bioinformatics 26:i540-6. The workflow only calls one BioXSD web service (BLAST) since the second service (ClustalW) in the example workflow is currently down :(

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

Credits: User Peter Li

Workflow Extended Operations for Nominal Values (1)

Thumb
This process shows examples for the extended operations for nominal values coming with one of the next RapidMiner updates (5.0.011 or 5.1.000). The operations are performed with the operator "Generate Attributes" and can be used directly within the expressions for the new attributes. The supported functions include Number to String [str(x)], String to Number [parse(text)], Substring [cut(text, start, length)], Concatenation [concat(text1, text2, text3...)], Replace [replace(text, what, by)],...

Created: 2010-10-05

Workflow DNA Shuffling Template - part 1: DNaseI di... (1)

Thumb
From Cameron Neylon's Bio-Blog a template for recording the data from a DNA shuffling experiment

Created: 2010-10-04 | Last updated: 2010-10-08

Credits: User http://thebluerhino.myopenid.com/

Workflow Blastn-ClustalW (1)

This workflow retrieves a sequence from NCBI Core Nucleotide, searches for similar sequences with Blastn, then feeds a set of Blastn results into the multiple alignment tool, ClustalW.

Created: 2010-09-29

Credits: User Kalpana

Workflow Maptube mapper (2)

Thumb
Takes a URL of some spatially-aggregated data and a field/column name to map and generates a MapTube url to an online map of the data.

Created: 2010-09-22 | Last updated: 2011-01-10

Credits: User Nick Malleson

Workflow Sff2Fasta_Blast_Blat_ParseBlast (1)

Thumb
Blast and Blat Roche 454 sequences against a reference database on the Dutch Life Science Grid Conversion of Roche 454 sequences to fasta Blat sequences against a database Blast sequences against a database Parse Blast results http://www.bioinformaticslaboratory.nl/  

Created: 2010-09-22 | Last updated: 2010-09-22

Credits: User Barbera van Schaik User Antoine van Kampen User Angela Luijf User Silvia Olabarriaga

Workflow Sff2Fasta_Blat (1)

Thumb
Blat Roche 454 sequences against a reference database on the Dutch Life Science Grid Conversion of Roche 454 sequences to fasta Blat sequences against a database http://www.bioinformaticslaboratory.nl/  

Created: 2010-09-22 | Last updated: 2010-09-22

Credits: User Barbera van Schaik User Antoine van Kampen User Angela Luijf User Silvia Olabarriaga

Workflow Population projection transport simulation (1)

Thumb
Neiss Transport Sim Demo. Runs a population reconstruction model (PRM) from census data, then projects the simulation through time. Also runs a transport simulation before and after the projection.

Created: 2010-09-22 | Last updated: 2010-09-22

Credits: User Nick Malleson

Workflow Sff2Fasta_Blast_ParseBlast (1)

Thumb
Blast Roche 454 sequences against a reference database on the Dutch Life Science Grid Conversion of Roche 454 sequences to fasta Blast sequences against a database Parse Blast results http://www.bioinformaticslaboratory.nl/      

Created: 2010-09-22 | Last updated: 2010-09-22

Credits: User Barbera van Schaik User Antoine van Kampen User Angela Luijf User Silvia Olabarriaga

Workflow RCOMM Challenge 3: Fibonacci Numbers (Inte... (1)

Thumb
At the RComm 2010 (www.rcomm2010.org), an unusual competition was held. Titled "Who Wants to Be a Data Miner", three challenges were issued to the participants of the conference. In all challenges, participants had to design RapidMiner processes as quickly as possible. This is the original solution I had in mind for Challenge 2: "Fibonacci Numbers". It defines a macro n, recurses by applying itself using an "Embed Process" operator on n-1 and n-2, appends the results (so the length is F(n-1)...

Created: 2010-09-17 | Last updated: 2010-09-17

Workflow RCOMM Challenge 3: Fibonacci Numbers (Impr... (1)

Thumb
At the RComm 2010 (www.rcomm2010.org), an unusual competition was held. Titled "Who Wants to Be a Data Miner", three challenges were issued to the participants of the conference. In all challenges, participants had to design RapidMiner processes as quickly as possible. This is the winning process of Challenge 2: "Fibonacci Numbers" by Matko Bošnjak. This was the task: The n-th Fibonacci number is F(n)=F(n-1)+F(n-2), and F(0)=0, F(1)=1. Create a process that creates an example set with F(n)...

Created: 2010-09-17 | Last updated: 2010-09-17

Workflow RCOMM Challenge 2: Broken Iris (1)

Thumb
At the RComm 2010 (www.rcomm2010.org), an unusual competition was held. Titled "Who Wants to Be a Data Miner", three challenges were issued to the participants of the conference. In all challenges, participants had to design RapidMiner processes as quickly as possible. This is the winning process of Challenge 2: "Broken Iris" by Nico Piatkowski. This was the task: You are given a decision tree model (M) designed on the well-known Iris data set and unlabelled data (U) on which the model is t...

Created: 2010-09-17

Workflow RCOMM Challenge 2: Broken Iris (Preparation) (1)

Thumb
This workflow creates the input for the RCOMM 2010 Challenge 2. The solution and description are in workflow "RCOMM Challenge 2: Broken Iris"

Created: 2010-09-17

Workflow RCOMM Challenge 1: 99 bottles of beer (1)

Thumb
At the RComm 2010 (www.rcomm2010.org), an unusual competition was held. Titled "Who Wants to Be a Data Miner", three challenges were issued to the participants of the conference. In all challenges, participants had to design RapidMiner processes as quickly as possible. This is the winning process of Challenge 1: "99 bottles of beer" by Sebastian Land. This was the task: Design a process that produces an example set the rows of which form the lyrics of the well-known song "99 bottles of beer...

Created: 2010-09-17

Uploader

Workflow BowtieToPileup (1)

Thumb
This example workflow aligns short sequencing reads to a reference genome using Bowtie and generates a SAMtools pileup file. By analysing an actual data set (SNP detection in N. vitripennis) and translating this analysis pipeline into a Taverna workflow, I was able to come up with an easy way of using Taverna for such analysis. I created a Java API (with my limited Java experience) that wraps the command line programs used in the analysis pipeline: Bowtie and some of the SAMtools. Instead of ...

Created: 2010-09-16

Uploader

Workflow From PDF to lemmatized text (1)

Thumb
This workflow uses the web service stationed in JSI (IJS Slovenia), which is based on Matjaž Juršič's LemmaGen - lemmatization engine. The workflow accepts a PDF file as an input an uses James Eales's wrokflows to preprocess the data. The workflow interactively asks the user of which language is the text, since the lemmatization process is language based. The output is a string in Taverna Workbench.

Created: 2010-09-16 | Last updated: 2012-01-18

Credits: User Netr User James Eales

Attributions: Workflow PDF to plain text Workflow Clean plain text

Workflow retrive dpas data for all ics instruments ... (1)

Thumb
This workflow demonstrates the standard query where events for a period of time are requested from the HEC service, available instruments for this time come from the ICS and data only for the times of the events are requested from the DPAS. In this version data from only 3 random events (out of the HEC list) will be requested from the DPAS.

Created: 2010-09-14 | Last updated: 2010-09-14

Credits: User Anja Le Blanc

Attributions: Workflow retrive dpas data for all ics instruments for HEC event data

Workflow retrive dpas data for all ics instruments ... (1)

Thumb
This workflow demonstrates the standard query there events for a period of time are requested from the HEC service, available instruments for this time come from the ICS and data only for the times of the events are requested from the DPAS.

Created: 2010-09-14 | Last updated: 2010-09-14

Credits: User Anja Le Blanc

Attributions: Workflow Extracting data from VOTable format by using XPath query Workflow Retrieve all data for all instruments for a given periode of time

Workflow Generate percentages from absolute values (1)

Thumb
This process demonstrates how to calculate the percentages of absolute values of one data record. The process first creates an aggregation attribute SumAll and then loops over the absolute value attributes and creates a new relative attributes. Tags: relative, absolute, values, percentage, loop attributes, generate aggregation

Created: 2010-09-14 | Last updated: 2010-09-14

Workflow Example workflow for REST and XPath activi... (1)

Thumb
Note that this workflow depends upon the REST and XPath plugins. This workflow fetches weather forecast for the user-specified location. First of all it uses the provided location name to obtain a WOEID ("Where On Earth ID") of that location, then uses that unique identifier to fetch the weather forecast from Yahoo server. Multiple results may be obtained in case there is no unique translation of the location to a WOEID. REST activity is used to perform HTTP requests and fetch d...

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

Credits: User Sergejs Aleksejevs

Uploader

Workflow Principle Component Analysis (PCA) over mi... (1)

Thumb
Principle Component Analysis (PCA) over microarray data. Data is uploaded through caGrid transfer ultility.

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

Credits: User Wei Tan

Workflow Multiple choice quiz (1)

Thumb
A fun example workflow showing user-interaction and service looping

Created: 2010-09-06

Credits: User George

Attributions: Workflow Multiple Choice Quiz

Uploader

Workflow 11111 (1)

Thumb
Reads collections of text from a set of directories, assigning each directory to a class (as specified by parameter text_directories), and transforms them into a TF-IDF or other word vector. Finally, an SVM is applied to model the input texts.

Created: 2010-09-04

Uploader

Workflow 222 (1)

Thumb
This process shows how several different classifiers could be graphically compared by means of multiple ROC curves.

Created: 2010-09-04

Results per page:
Sort by: