Skip to content
Snippets Groups Projects
Commit 574ea624 authored by Martin Larralde's avatar Martin Larralde
Browse files

Add `versionadded` directive for new `thread` argument of `Mapper` methods

parent 16180c2c
No related branches found
No related tags found
No related merge requests found
...@@ -1107,6 +1107,9 @@ cdef class Mapper(_Parameterized): ...@@ -1107,6 +1107,9 @@ cdef class Mapper(_Parameterized):
the blocks allowing to query the mapper in parallel for the blocks allowing to query the mapper in parallel for
several individual genomes. several individual genomes.
.. versionadded:: 0.4.0
The `threads` argument.
""" """
# delegate to C code # delegate to C code
return self._query_draft(contigs, threads=threads) return self._query_draft(contigs, threads=threads)
...@@ -1136,6 +1139,9 @@ cdef class Mapper(_Parameterized): ...@@ -1136,6 +1139,9 @@ cdef class Mapper(_Parameterized):
the blocks allowing to query the mapper in parallel for the blocks allowing to query the mapper in parallel for
several individual genomes. several individual genomes.
.. versionadded:: 0.4.0
The `threads` argument.
""" """
# delegate to C code # delegate to C code
return self._query_draft((sequence,), threads=threads) return self._query_draft((sequence,), threads=threads)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment