1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129
|
Wrapping new tools
==================
This section serves as a reference for wrapping new tools as they are added to
BEDTools.
Example program description
---------------------------
Let's assume we would like to wrap a new program, appropriately named
`newProgramBed`. Its signature from the command line is `newProgramBed -a
<infile> -b <other file> [options]`, and it accepts `-a stdin` to indicate
data is being piped to it::
newProgramBed -a <BED/VCF/GFF> -b <BED/VCF/GFF> [options]
Method name
-----------
Generally, I've tried to keep method names as similar as possible to
BEDTools programs while still being PEP8-compliant. The trailing 'Bed' is
usually removed from the program name. So here the name would probably be
`new_program`.
Define a method in :class:`BedTool`
-----------------------------------
Define a method in :class:`BedTool` . . . and *don't add any content to the
function body*. This is because the decorator we're about to add will
replace the method wholesale; anything that's in the function body will
effectively be ignored.
::
def new_program(self):
pass
Add the :func:`_wraps` decorator
--------------------------------
This is where most of the work happens.
Since most of the work of wrapping BEDTools programs needs to happen every
time a new program is wrapped, this work is abstracted out into the
:func:`_wraps` function.
.. note::
The :func:`_wraps` docstring and source is the best place to learn the
details on what it's doing; here we'll focus on using it.
Our hypothetical program, `newProgramBed`, takes `-a` as the first input.
We'd like to have `-a` implicitly be passed as whatever our
:class:`BedTool` already points to, so we use the `implicit='a'` kwarg to
:func:`_wraps` here. `newProgramBed` also takes a second input, `-b`. We
describe that to the wrapper with the `other='b'` kwarg.
Any other keyword args that are used when calling the method will
automatically be passed to the program. So if `newProgramBed` has an
optional `-s` argument, we don't need to specify that here. When the user
passes an `s=True` kwarg, it will be passed automatically to
`newProgramBed` as the argument `-s`. If `newProgramBed` does not accept a
`-z` argument but the user passes one anyway, we rely on the BEDTools
program to do the error-checking of arguments and report any errors back to
Python.
Here's what the new method looks like so far:
::
@_wraps(prog='newProgramBed', implicit='a', other='b')
def new_program(self):
pass
For wrapped programs that expect a genome file or have more complex
arguments, see the docstring and source for :func:`_wrap`.
Add doctests
------------
While the function body will be replaced wholesale by the decorator, the
docstring will be copied to the new function. This is important because it
means we can write meaningful documentation and, even more importantly,
doctests for this method. Writing a doctest within the method's docstring
means it will automatically be found by the test suite.
::
@_wraps(prog='newProgramBed', implicit='a', other='b')
def new_program(self):
"""
Converts all features to length of 1.
Example usage:
>>> a = pybedtools.example_bedtool('a.bed')
>>> b = pybedtools.example_bedtool('b.bed')
>>> c = a.new_program(b, s=True)
>>> print c #+NORMALIZE_WHITESPACE
chr1 1 2
chr1 100 101
chr1 150 151
chr1 900 901
<BLANKLINE>
"""
Add to list of known programs
-----------------------------
The last thing to do is to add the new program to the end of the tuple
`pybedtools.helpers._prog_names`. This creates rudimentary security by only
allowing these programs to be called, and acts as sort of a central registry
for programs that have been wrapped.
Summary
-------
That's it! We now have a method, :meth:`BedTool.new_program`, that wraps
a hypothetical `newProgramBed` BEDTools program, will accept any optional
args that `newProgramBed` does, will return a new :class:`BedTool`
containing the results, *and it's tested*.
This new method can be be chained with other :class:`BedTool` instances,
used as an iterator or generator, or anything else a normal
:class:`BedTool` can do . . . for example::
a = pybedtools.example_bed('a.bed')
b = pybedtools.example_bed('b.bed')
c = a.new_program(b, s=True).filter(lambda x: x.start < 125).saveas('t.bed', trackline='track name="one-bp features"')
.. _decorator: http://www.python.org/dev/peps/pep-0318/
|