annotate readme.txt @ 1:12ac67b5c81d draft default tip

Deleted selected files
author bjoern-gruening
date Sat, 26 Apr 2014 12:56:03 -0400
parents e850a63e5aed
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
0
e850a63e5aed initial uploaded
bjoern-gruening
parents:
diff changeset
1 Galaxy wrapper for sed
e850a63e5aed initial uploaded
bjoern-gruening
parents:
diff changeset
2 ======================
e850a63e5aed initial uploaded
bjoern-gruening
parents:
diff changeset
3
e850a63e5aed initial uploaded
bjoern-gruening
parents:
diff changeset
4 This wrapper is copyright 2012 by Björn Grüning.
e850a63e5aed initial uploaded
bjoern-gruening
parents:
diff changeset
5
e850a63e5aed initial uploaded
bjoern-gruening
parents:
diff changeset
6 This is a wrapper for the sed command line tool.
e850a63e5aed initial uploaded
bjoern-gruening
parents:
diff changeset
7
e850a63e5aed initial uploaded
bjoern-gruening
parents:
diff changeset
8 sed is a stream editor included in every unix-derived operating system.
e850a63e5aed initial uploaded
bjoern-gruening
parents:
diff changeset
9 That wrapper only uses a small subset of the sed functionality. Its only a wrapper for:
e850a63e5aed initial uploaded
bjoern-gruening
parents:
diff changeset
10
e850a63e5aed initial uploaded
bjoern-gruening
parents:
diff changeset
11 sed -r '$pattern' $input
e850a63e5aed initial uploaded
bjoern-gruening
parents:
diff changeset
12
e850a63e5aed initial uploaded
bjoern-gruening
parents:
diff changeset
13
e850a63e5aed initial uploaded
bjoern-gruening
parents:
diff changeset
14 WARNING:
e850a63e5aed initial uploaded
bjoern-gruening
parents:
diff changeset
15 ========
e850a63e5aed initial uploaded
bjoern-gruening
parents:
diff changeset
16
e850a63e5aed initial uploaded
bjoern-gruening
parents:
diff changeset
17 No syntax check and sanitising will happen in that wrapper. This wrapper may harm your computer ;)
e850a63e5aed initial uploaded
bjoern-gruening
parents:
diff changeset
18 Nevertheless, i think it can be useable for some installations.
e850a63e5aed initial uploaded
bjoern-gruening
parents:
diff changeset
19
e850a63e5aed initial uploaded
bjoern-gruening
parents:
diff changeset
20
e850a63e5aed initial uploaded
bjoern-gruening
parents:
diff changeset
21 Installation
e850a63e5aed initial uploaded
bjoern-gruening
parents:
diff changeset
22 ============
e850a63e5aed initial uploaded
bjoern-gruening
parents:
diff changeset
23
e850a63e5aed initial uploaded
bjoern-gruening
parents:
diff changeset
24 sed should be available on every unix derived operating system and belongs to the classical unix programms.
e850a63e5aed initial uploaded
bjoern-gruening
parents:
diff changeset
25 No further installation is requiered.
e850a63e5aed initial uploaded
bjoern-gruening
parents:
diff changeset
26
e850a63e5aed initial uploaded
bjoern-gruening
parents:
diff changeset
27 For more information have a look at the following pages:
e850a63e5aed initial uploaded
bjoern-gruening
parents:
diff changeset
28
e850a63e5aed initial uploaded
bjoern-gruening
parents:
diff changeset
29 http://en.wikipedia.org/wiki/Sed
e850a63e5aed initial uploaded
bjoern-gruening
parents:
diff changeset
30 http://www.gnu.org/software/sed/manual/sed.html
e850a63e5aed initial uploaded
bjoern-gruening
parents:
diff changeset
31
e850a63e5aed initial uploaded
bjoern-gruening
parents:
diff changeset
32 To install the wrapper copy the sed folder in the galaxy tools
e850a63e5aed initial uploaded
bjoern-gruening
parents:
diff changeset
33 folder and modify the tools_conf.xml file to make the tool available to Galaxy.
e850a63e5aed initial uploaded
bjoern-gruening
parents:
diff changeset
34 For example:
e850a63e5aed initial uploaded
bjoern-gruening
parents:
diff changeset
35
e850a63e5aed initial uploaded
bjoern-gruening
parents:
diff changeset
36 <toolbox>
e850a63e5aed initial uploaded
bjoern-gruening
parents:
diff changeset
37 <tool file="text_manipulation/sed.xml" />
e850a63e5aed initial uploaded
bjoern-gruening
parents:
diff changeset
38 </toolbox>
e850a63e5aed initial uploaded
bjoern-gruening
parents:
diff changeset
39
e850a63e5aed initial uploaded
bjoern-gruening
parents:
diff changeset
40
e850a63e5aed initial uploaded
bjoern-gruening
parents:
diff changeset
41 History
e850a63e5aed initial uploaded
bjoern-gruening
parents:
diff changeset
42 =======
e850a63e5aed initial uploaded
bjoern-gruening
parents:
diff changeset
43
e850a63e5aed initial uploaded
bjoern-gruening
parents:
diff changeset
44 v0.1 - Initial public release
e850a63e5aed initial uploaded
bjoern-gruening
parents:
diff changeset
45
e850a63e5aed initial uploaded
bjoern-gruening
parents:
diff changeset
46
e850a63e5aed initial uploaded
bjoern-gruening
parents:
diff changeset
47 Wrapper Licence (MIT/BSD style)
e850a63e5aed initial uploaded
bjoern-gruening
parents:
diff changeset
48 ===============================
e850a63e5aed initial uploaded
bjoern-gruening
parents:
diff changeset
49
e850a63e5aed initial uploaded
bjoern-gruening
parents:
diff changeset
50 Permission to use, copy, modify, and distribute this software and its
e850a63e5aed initial uploaded
bjoern-gruening
parents:
diff changeset
51 documentation with or without modifications and for any purpose and
e850a63e5aed initial uploaded
bjoern-gruening
parents:
diff changeset
52 without fee is hereby granted, provided that any copyright notices
e850a63e5aed initial uploaded
bjoern-gruening
parents:
diff changeset
53 appear in all copies and that both those copyright notices and this
e850a63e5aed initial uploaded
bjoern-gruening
parents:
diff changeset
54 permission notice appear in supporting documentation, and that the
e850a63e5aed initial uploaded
bjoern-gruening
parents:
diff changeset
55 names of the contributors or copyright holders not be used in
e850a63e5aed initial uploaded
bjoern-gruening
parents:
diff changeset
56 advertising or publicity pertaining to distribution of the software
e850a63e5aed initial uploaded
bjoern-gruening
parents:
diff changeset
57 without specific prior permission.
e850a63e5aed initial uploaded
bjoern-gruening
parents:
diff changeset
58
e850a63e5aed initial uploaded
bjoern-gruening
parents:
diff changeset
59 THE CONTRIBUTORS AND COPYRIGHT HOLDERS OF THIS SOFTWARE DISCLAIM ALL
e850a63e5aed initial uploaded
bjoern-gruening
parents:
diff changeset
60 WARRANTIES WITH REGARD TO THIS SOFTWARE, INCLUDING ALL IMPLIED
e850a63e5aed initial uploaded
bjoern-gruening
parents:
diff changeset
61 WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO EVENT SHALL THE
e850a63e5aed initial uploaded
bjoern-gruening
parents:
diff changeset
62 CONTRIBUTORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY SPECIAL, INDIRECT
e850a63e5aed initial uploaded
bjoern-gruening
parents:
diff changeset
63 OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS
e850a63e5aed initial uploaded
bjoern-gruening
parents:
diff changeset
64 OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE
e850a63e5aed initial uploaded
bjoern-gruening
parents:
diff changeset
65 OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE
e850a63e5aed initial uploaded
bjoern-gruening
parents:
diff changeset
66 OR PERFORMANCE OF THIS SOFTWARE.
e850a63e5aed initial uploaded
bjoern-gruening
parents:
diff changeset
67