~ubuntu-branches/debian/jessie/ugene/jessie

« back to all changes in this revision

Viewing changes to data/cmdline/fetch.uwl

  • Committer: Package Import Robot
  • Author(s): Steffen Moeller
  • Date: 2011-11-02 13:29:07 UTC
  • mfrom: (1.2.1) (3.1.11 natty)
  • Revision ID: package-import@ubuntu.com-20111102132907-o34gwnt0uj5g6hen
Tags: 1.9.8+repack-1
* First release to Debian
  - added README.Debian
  - increased policy version to 3.9.2
  - added URLs for version control system
* Added debug package.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#!UGENE_WORKFLOW
 
2
#Fetches sequences from remote database. The supported databases are accesed via alias.
 
3
#
 
4
#Database               Alias
 
5
#--------               -----
 
6
#NCBI Genbank (DNA)     genbank
 
7
#NCBI Genbank (protein) genbank-protein
 
8
#Protein Data Bank      pdb
 
9
#SwissProt              swissprot
 
10
#Uniprot                        uniprot
 
11
#
 
12
 
 
13
workflow fetch{
 
14
 
 
15
    fetch-sequence {
 
16
        type:fetch-sequence;
 
17
        name:"Read from remote database";
 
18
        database:"NCBI GenBank (DNA sequence)";
 
19
        save-dir:.;
 
20
    }
 
21
 
 
22
 
 
23
    .meta {
 
24
        aliases {
 
25
            fetch-sequence.database:db;
 
26
            fetch-sequence.resource-id:id;
 
27
            fetch-sequence.save-dir:save-dir;
 
28
        }
 
29
        help {
 
30
            db:"Database alias";
 
31
            id:"Resource ID in the database. Several IDs can be separated with semicolon";
 
32
            save-dir:"Directory to store loaded sequences";
 
33
        }
 
34
        visual {
 
35
            fetch-sequence {
 
36
                description:"<!DOCTYPE HTML PUBLIC '-//W3C//DTD HTML 4.0//EN' 'http://www.w3.org/TR/REC-html40/strict.dtd'> <html><head><meta name='qrichtext' content='1' /><style type='text/css'> p, li { white-space: pre-wrap; } </style></head><body style=' font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;'> <p align='center' style=' margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;'><span style=' font-weight:600;'>Read from remote database</span></p> <hr /> <p style=' margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;'>Reads sequence identified with <span style=' color:#ff0000;'>unset</span> from <span style=' text-decoration: underline;'>NCBI GenBank (DNA sequence)</span> remote database. Save result to <span style=' text-decoration: underline;'>.</span> directory</p></body></html>";
 
37
                tooltip:"Reads sequences and annotations if any from a remote database.";
 
38
                pos:"-420 -375";
 
39
                style:ext;
 
40
                bg-color-ext:"0 128 128 64";
 
41
                out-sequence.angle:360;
 
42
            }
 
43
        }
 
44
    }
 
45
}
 
46