annotate tools/primers/seq_primer_clip.txt.orig @ 1:8c02a91a8680 draft

Uploaded v0.0.9, modifies tests to cope with current Tool Shed limitation.
author peterjc
date Tue, 30 Apr 2013 11:04:43 -0400
parents
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
1
8c02a91a8680 Uploaded v0.0.9, modifies tests to cope with current Tool Shed limitation.
peterjc
parents:
diff changeset
1 Galaxy tool to primer clip (trim) FASTA, FASTQ or SFF reads
8c02a91a8680 Uploaded v0.0.9, modifies tests to cope with current Tool Shed limitation.
peterjc
parents:
diff changeset
2 ===========================================================
8c02a91a8680 Uploaded v0.0.9, modifies tests to cope with current Tool Shed limitation.
peterjc
parents:
diff changeset
3
8c02a91a8680 Uploaded v0.0.9, modifies tests to cope with current Tool Shed limitation.
peterjc
parents:
diff changeset
4 This tool is copyright 2011 by Peter Cock, The James Hutton Institute
8c02a91a8680 Uploaded v0.0.9, modifies tests to cope with current Tool Shed limitation.
peterjc
parents:
diff changeset
5 (formerly SCRI, Scottish Crop Research Institute), UK. All rights reserved.
8c02a91a8680 Uploaded v0.0.9, modifies tests to cope with current Tool Shed limitation.
peterjc
parents:
diff changeset
6 See the licence text below.
8c02a91a8680 Uploaded v0.0.9, modifies tests to cope with current Tool Shed limitation.
peterjc
parents:
diff changeset
7
8c02a91a8680 Uploaded v0.0.9, modifies tests to cope with current Tool Shed limitation.
peterjc
parents:
diff changeset
8 This tool is a short Python script (using the Galaxy library functions and
8c02a91a8680 Uploaded v0.0.9, modifies tests to cope with current Tool Shed limitation.
peterjc
parents:
diff changeset
9 Biopython). There are just two files to install:
8c02a91a8680 Uploaded v0.0.9, modifies tests to cope with current Tool Shed limitation.
peterjc
parents:
diff changeset
10
8c02a91a8680 Uploaded v0.0.9, modifies tests to cope with current Tool Shed limitation.
peterjc
parents:
diff changeset
11 * seq_primer_clip.py (the Python script)
8c02a91a8680 Uploaded v0.0.9, modifies tests to cope with current Tool Shed limitation.
peterjc
parents:
diff changeset
12 * seq_primer_clip.xml (the Galaxy tool definition)
8c02a91a8680 Uploaded v0.0.9, modifies tests to cope with current Tool Shed limitation.
peterjc
parents:
diff changeset
13
8c02a91a8680 Uploaded v0.0.9, modifies tests to cope with current Tool Shed limitation.
peterjc
parents:
diff changeset
14 The suggested location is a new tools/primers folder. You will also need to
8c02a91a8680 Uploaded v0.0.9, modifies tests to cope with current Tool Shed limitation.
peterjc
parents:
diff changeset
15 modify the tools_conf.xml file to tell Galaxy to offer the tool and also do
8c02a91a8680 Uploaded v0.0.9, modifies tests to cope with current Tool Shed limitation.
peterjc
parents:
diff changeset
16 this to tools_conf.xml.sample in order to run the tests:
8c02a91a8680 Uploaded v0.0.9, modifies tests to cope with current Tool Shed limitation.
peterjc
parents:
diff changeset
17
8c02a91a8680 Uploaded v0.0.9, modifies tests to cope with current Tool Shed limitation.
peterjc
parents:
diff changeset
18 <tool file="primers/seq_primer_clip.xml" />
8c02a91a8680 Uploaded v0.0.9, modifies tests to cope with current Tool Shed limitation.
peterjc
parents:
diff changeset
19
8c02a91a8680 Uploaded v0.0.9, modifies tests to cope with current Tool Shed limitation.
peterjc
parents:
diff changeset
20 There are optionally some example files required to run the functional tests,
8c02a91a8680 Uploaded v0.0.9, modifies tests to cope with current Tool Shed limitation.
peterjc
parents:
diff changeset
21 put these in the test-data/primers folder.
8c02a91a8680 Uploaded v0.0.9, modifies tests to cope with current Tool Shed limitation.
peterjc
parents:
diff changeset
22
8c02a91a8680 Uploaded v0.0.9, modifies tests to cope with current Tool Shed limitation.
peterjc
parents:
diff changeset
23 test-data/primers/dop_primers.fasta
8c02a91a8680 Uploaded v0.0.9, modifies tests to cope with current Tool Shed limitation.
peterjc
parents:
diff changeset
24 test-data/primers/MID4_GLZRM4E04_rnd30.fasta
8c02a91a8680 Uploaded v0.0.9, modifies tests to cope with current Tool Shed limitation.
peterjc
parents:
diff changeset
25 test-data/primers/MID4_GLZRM4E04_rnd30.fastqsanger
8c02a91a8680 Uploaded v0.0.9, modifies tests to cope with current Tool Shed limitation.
peterjc
parents:
diff changeset
26 test-data/primers/MID4_GLZRM4E04_rnd30.sff
8c02a91a8680 Uploaded v0.0.9, modifies tests to cope with current Tool Shed limitation.
peterjc
parents:
diff changeset
27 test-data/primers/MID4_GLZRM4E04_rnd30_fclip.fasta
8c02a91a8680 Uploaded v0.0.9, modifies tests to cope with current Tool Shed limitation.
peterjc
parents:
diff changeset
28 test-data/primers/MID4_GLZRM4E04_rnd30_fclip.fastqsanger
8c02a91a8680 Uploaded v0.0.9, modifies tests to cope with current Tool Shed limitation.
peterjc
parents:
diff changeset
29 test-data/primers/MID4_GLZRM4E04_rnd30_fclip.sff
8c02a91a8680 Uploaded v0.0.9, modifies tests to cope with current Tool Shed limitation.
peterjc
parents:
diff changeset
30
8c02a91a8680 Uploaded v0.0.9, modifies tests to cope with current Tool Shed limitation.
peterjc
parents:
diff changeset
31 You should then be able to run the tests with:
8c02a91a8680 Uploaded v0.0.9, modifies tests to cope with current Tool Shed limitation.
peterjc
parents:
diff changeset
32
8c02a91a8680 Uploaded v0.0.9, modifies tests to cope with current Tool Shed limitation.
peterjc
parents:
diff changeset
33 sh run_functional_tests.sh -id seq_primer_clip
8c02a91a8680 Uploaded v0.0.9, modifies tests to cope with current Tool Shed limitation.
peterjc
parents:
diff changeset
34
8c02a91a8680 Uploaded v0.0.9, modifies tests to cope with current Tool Shed limitation.
peterjc
parents:
diff changeset
35 You will also need to install Biopython 1.54 or later. That's it.
8c02a91a8680 Uploaded v0.0.9, modifies tests to cope with current Tool Shed limitation.
peterjc
parents:
diff changeset
36
8c02a91a8680 Uploaded v0.0.9, modifies tests to cope with current Tool Shed limitation.
peterjc
parents:
diff changeset
37
8c02a91a8680 Uploaded v0.0.9, modifies tests to cope with current Tool Shed limitation.
peterjc
parents:
diff changeset
38 History
8c02a91a8680 Uploaded v0.0.9, modifies tests to cope with current Tool Shed limitation.
peterjc
parents:
diff changeset
39 =======
8c02a91a8680 Uploaded v0.0.9, modifies tests to cope with current Tool Shed limitation.
peterjc
parents:
diff changeset
40
8c02a91a8680 Uploaded v0.0.9, modifies tests to cope with current Tool Shed limitation.
peterjc
parents:
diff changeset
41 v0.0.1 - Initial version (not publicly released)
8c02a91a8680 Uploaded v0.0.9, modifies tests to cope with current Tool Shed limitation.
peterjc
parents:
diff changeset
42 v0.0.2 - Sort primers by length (longest and therefore most specific first)
8c02a91a8680 Uploaded v0.0.9, modifies tests to cope with current Tool Shed limitation.
peterjc
parents:
diff changeset
43 v0.0.3 - Consider missing bases at start/end of read as mismatches
8c02a91a8680 Uploaded v0.0.9, modifies tests to cope with current Tool Shed limitation.
peterjc
parents:
diff changeset
44 v0.0.4 - Apply minimum length to sequences with no match too
8c02a91a8680 Uploaded v0.0.9, modifies tests to cope with current Tool Shed limitation.
peterjc
parents:
diff changeset
45 v0.0.5 - Count clipped & non-matched short reads separately, length bug fixes
8c02a91a8680 Uploaded v0.0.9, modifies tests to cope with current Tool Shed limitation.
peterjc
parents:
diff changeset
46 v0.0.6 - Added some functional tests
8c02a91a8680 Uploaded v0.0.9, modifies tests to cope with current Tool Shed limitation.
peterjc
parents:
diff changeset
47 v0.0.7 - Added error check for bad filename arguments
8c02a91a8680 Uploaded v0.0.9, modifies tests to cope with current Tool Shed limitation.
peterjc
parents:
diff changeset
48 v0.0.8 - Record version of Python script when run from Galaxy.
8c02a91a8680 Uploaded v0.0.9, modifies tests to cope with current Tool Shed limitation.
peterjc
parents:
diff changeset
49 - Check for errors using Python script's return code.
8c02a91a8680 Uploaded v0.0.9, modifies tests to cope with current Tool Shed limitation.
peterjc
parents:
diff changeset
50
8c02a91a8680 Uploaded v0.0.9, modifies tests to cope with current Tool Shed limitation.
peterjc
parents:
diff changeset
51
8c02a91a8680 Uploaded v0.0.9, modifies tests to cope with current Tool Shed limitation.
peterjc
parents:
diff changeset
52 Developers
8c02a91a8680 Uploaded v0.0.9, modifies tests to cope with current Tool Shed limitation.
peterjc
parents:
diff changeset
53 ==========
8c02a91a8680 Uploaded v0.0.9, modifies tests to cope with current Tool Shed limitation.
peterjc
parents:
diff changeset
54
8c02a91a8680 Uploaded v0.0.9, modifies tests to cope with current Tool Shed limitation.
peterjc
parents:
diff changeset
55 This script and related tools are being developed on the following hg branch:
8c02a91a8680 Uploaded v0.0.9, modifies tests to cope with current Tool Shed limitation.
peterjc
parents:
diff changeset
56 http://bitbucket.org/peterjc/galaxy-central/src/tools
8c02a91a8680 Uploaded v0.0.9, modifies tests to cope with current Tool Shed limitation.
peterjc
parents:
diff changeset
57
8c02a91a8680 Uploaded v0.0.9, modifies tests to cope with current Tool Shed limitation.
peterjc
parents:
diff changeset
58 This incorporates the previously used hg branch:
8c02a91a8680 Uploaded v0.0.9, modifies tests to cope with current Tool Shed limitation.
peterjc
parents:
diff changeset
59 http://bitbucket.org/peterjc/galaxy-central/src/fasta_filter
8c02a91a8680 Uploaded v0.0.9, modifies tests to cope with current Tool Shed limitation.
peterjc
parents:
diff changeset
60
8c02a91a8680 Uploaded v0.0.9, modifies tests to cope with current Tool Shed limitation.
peterjc
parents:
diff changeset
61 For making the "Galaxy Tool Shed" http://toolshed.g2.bx.psu.edu/ tarball use
8c02a91a8680 Uploaded v0.0.9, modifies tests to cope with current Tool Shed limitation.
peterjc
parents:
diff changeset
62 the following command from the Galaxy root folder:
8c02a91a8680 Uploaded v0.0.9, modifies tests to cope with current Tool Shed limitation.
peterjc
parents:
diff changeset
63
8c02a91a8680 Uploaded v0.0.9, modifies tests to cope with current Tool Shed limitation.
peterjc
parents:
diff changeset
64 $ tar -czf seq_primer_clip.tar.gz tools/primers/seq_primer_clip.* test-data/primers/*
8c02a91a8680 Uploaded v0.0.9, modifies tests to cope with current Tool Shed limitation.
peterjc
parents:
diff changeset
65
8c02a91a8680 Uploaded v0.0.9, modifies tests to cope with current Tool Shed limitation.
peterjc
parents:
diff changeset
66 Check this worked:
8c02a91a8680 Uploaded v0.0.9, modifies tests to cope with current Tool Shed limitation.
peterjc
parents:
diff changeset
67
8c02a91a8680 Uploaded v0.0.9, modifies tests to cope with current Tool Shed limitation.
peterjc
parents:
diff changeset
68 $ tar -tzf seq_primer_clip.tar.gz
8c02a91a8680 Uploaded v0.0.9, modifies tests to cope with current Tool Shed limitation.
peterjc
parents:
diff changeset
69 tools/primers/seq_primer_clip.py
8c02a91a8680 Uploaded v0.0.9, modifies tests to cope with current Tool Shed limitation.
peterjc
parents:
diff changeset
70 tools/primers/seq_primer_clip.txt
8c02a91a8680 Uploaded v0.0.9, modifies tests to cope with current Tool Shed limitation.
peterjc
parents:
diff changeset
71 tools/primers/seq_primer_clip.xml
8c02a91a8680 Uploaded v0.0.9, modifies tests to cope with current Tool Shed limitation.
peterjc
parents:
diff changeset
72 test-data/primers/dop_primers.fasta
8c02a91a8680 Uploaded v0.0.9, modifies tests to cope with current Tool Shed limitation.
peterjc
parents:
diff changeset
73 test-data/primers/MID4_GLZRM4E04_rnd30.fasta
8c02a91a8680 Uploaded v0.0.9, modifies tests to cope with current Tool Shed limitation.
peterjc
parents:
diff changeset
74 test-data/primers/MID4_GLZRM4E04_rnd30.fastqsanger
8c02a91a8680 Uploaded v0.0.9, modifies tests to cope with current Tool Shed limitation.
peterjc
parents:
diff changeset
75 test-data/primers/MID4_GLZRM4E04_rnd30_fclip.fasta
8c02a91a8680 Uploaded v0.0.9, modifies tests to cope with current Tool Shed limitation.
peterjc
parents:
diff changeset
76 test-data/primers/MID4_GLZRM4E04_rnd30_fclip.fastqsanger
8c02a91a8680 Uploaded v0.0.9, modifies tests to cope with current Tool Shed limitation.
peterjc
parents:
diff changeset
77 test-data/primers/MID4_GLZRM4E04_rnd30_fclip.sff
8c02a91a8680 Uploaded v0.0.9, modifies tests to cope with current Tool Shed limitation.
peterjc
parents:
diff changeset
78 test-data/primers/MID4_GLZRM4E04_rnd30_frclip.fasta
8c02a91a8680 Uploaded v0.0.9, modifies tests to cope with current Tool Shed limitation.
peterjc
parents:
diff changeset
79 test-data/primers/MID4_GLZRM4E04_rnd30_frclip.fastqsanger
8c02a91a8680 Uploaded v0.0.9, modifies tests to cope with current Tool Shed limitation.
peterjc
parents:
diff changeset
80 test-data/primers/MID4_GLZRM4E04_rnd30_frclip.sff
8c02a91a8680 Uploaded v0.0.9, modifies tests to cope with current Tool Shed limitation.
peterjc
parents:
diff changeset
81 test-data/primers/MID4_GLZRM4E04_rnd30.sff
8c02a91a8680 Uploaded v0.0.9, modifies tests to cope with current Tool Shed limitation.
peterjc
parents:
diff changeset
82
8c02a91a8680 Uploaded v0.0.9, modifies tests to cope with current Tool Shed limitation.
peterjc
parents:
diff changeset
83
8c02a91a8680 Uploaded v0.0.9, modifies tests to cope with current Tool Shed limitation.
peterjc
parents:
diff changeset
84 Licence (MIT/BSD style)
8c02a91a8680 Uploaded v0.0.9, modifies tests to cope with current Tool Shed limitation.
peterjc
parents:
diff changeset
85 =======================
8c02a91a8680 Uploaded v0.0.9, modifies tests to cope with current Tool Shed limitation.
peterjc
parents:
diff changeset
86
8c02a91a8680 Uploaded v0.0.9, modifies tests to cope with current Tool Shed limitation.
peterjc
parents:
diff changeset
87 Permission to use, copy, modify, and distribute this software and its
8c02a91a8680 Uploaded v0.0.9, modifies tests to cope with current Tool Shed limitation.
peterjc
parents:
diff changeset
88 documentation with or without modifications and for any purpose and
8c02a91a8680 Uploaded v0.0.9, modifies tests to cope with current Tool Shed limitation.
peterjc
parents:
diff changeset
89 without fee is hereby granted, provided that any copyright notices
8c02a91a8680 Uploaded v0.0.9, modifies tests to cope with current Tool Shed limitation.
peterjc
parents:
diff changeset
90 appear in all copies and that both those copyright notices and this
8c02a91a8680 Uploaded v0.0.9, modifies tests to cope with current Tool Shed limitation.
peterjc
parents:
diff changeset
91 permission notice appear in supporting documentation, and that the
8c02a91a8680 Uploaded v0.0.9, modifies tests to cope with current Tool Shed limitation.
peterjc
parents:
diff changeset
92 names of the contributors or copyright holders not be used in
8c02a91a8680 Uploaded v0.0.9, modifies tests to cope with current Tool Shed limitation.
peterjc
parents:
diff changeset
93 advertising or publicity pertaining to distribution of the software
8c02a91a8680 Uploaded v0.0.9, modifies tests to cope with current Tool Shed limitation.
peterjc
parents:
diff changeset
94 without specific prior permission.
8c02a91a8680 Uploaded v0.0.9, modifies tests to cope with current Tool Shed limitation.
peterjc
parents:
diff changeset
95
8c02a91a8680 Uploaded v0.0.9, modifies tests to cope with current Tool Shed limitation.
peterjc
parents:
diff changeset
96 THE CONTRIBUTORS AND COPYRIGHT HOLDERS OF THIS SOFTWARE DISCLAIM ALL
8c02a91a8680 Uploaded v0.0.9, modifies tests to cope with current Tool Shed limitation.
peterjc
parents:
diff changeset
97 WARRANTIES WITH REGARD TO THIS SOFTWARE, INCLUDING ALL IMPLIED
8c02a91a8680 Uploaded v0.0.9, modifies tests to cope with current Tool Shed limitation.
peterjc
parents:
diff changeset
98 WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO EVENT SHALL THE
8c02a91a8680 Uploaded v0.0.9, modifies tests to cope with current Tool Shed limitation.
peterjc
parents:
diff changeset
99 CONTRIBUTORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY SPECIAL, INDIRECT
8c02a91a8680 Uploaded v0.0.9, modifies tests to cope with current Tool Shed limitation.
peterjc
parents:
diff changeset
100 OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS
8c02a91a8680 Uploaded v0.0.9, modifies tests to cope with current Tool Shed limitation.
peterjc
parents:
diff changeset
101 OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE
8c02a91a8680 Uploaded v0.0.9, modifies tests to cope with current Tool Shed limitation.
peterjc
parents:
diff changeset
102 OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE
8c02a91a8680 Uploaded v0.0.9, modifies tests to cope with current Tool Shed limitation.
peterjc
parents:
diff changeset
103 OR PERFORMANCE OF THIS SOFTWARE.