scipion-em-topaz


Namescipion-em-topaz JSON
Version 3.0.2 PyPI version JSON
download
home_pagehttps://github.com/scipion-em/scipion-em-topaz
SummaryTopaz ready to use in scipion.
upload_time2023-05-12 08:41:10
maintainer
docs_urlNone
authorI2PC
requires_python
license
keywords scipion cryo-em image-processing scipion-3.0
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            ============
Topaz plugin
============

This plugin allows to use Topaz programs within the Scipion framework.
It can denoise, pre-process micrographs and pick particles within Scipion.

`Topaz <https://github.com/tbepler/topaz>`_ is a pipeline for particle detection in cryo-electron
microscopy images which uses convolutional neural networks trained from
positive and unlabeled examples.

.. image:: https://img.shields.io/pypi/v/scipion-em-topaz.svg
        :target: https://pypi.python.org/pypi/scipion-em-topaz
        :alt: PyPI release

.. image:: https://img.shields.io/pypi/l/scipion-em-topaz.svg
        :target: https://pypi.python.org/pypi/scipion-em-topaz
        :alt: License

.. image:: https://img.shields.io/pypi/pyversions/scipion-em-topaz.svg
        :target: https://pypi.python.org/pypi/scipion-em-topaz
        :alt: Supported Python versions

.. image:: https://img.shields.io/sonar/quality_gate/scipion-em_scipion-em-topaz?server=https%3A%2F%2Fsonarcloud.io
        :target: https://sonarcloud.io/dashboard?id=scipion-em_scipion-em-topaz
        :alt: SonarCloud quality gate

.. image:: https://img.shields.io/pypi/dm/scipion-em-topaz
        :target: https://pypi.python.org/pypi/scipion-em-topaz
        :alt: Downloads

Installation
------------

You will need to use 3.0+ version of Scipion to be able to run these protocols. To install the plugin, you have two options:

a) Stable version

    It can be installed in user mode via Scipion plugin manager (**Configuration** > **Plugins**) or using the command line:

    .. code-block::

        scipion installp -p scipion-em-topaz

b) Developer's version

    * download repository

    .. code-block::

        git clone -b devel https://github.com/scipion-em/scipion-em-topaz.git

    * install

    .. code-block::

        scipion installp -p /path/to/scipion-em-topaz --devel

Topaz software will be installed automatically with the plugin but you can also use an existing installation by providing *TOPAZ_ENV_ACTIVATION* (see below).

**Important:** you need to have conda (miniconda3 or anaconda3) pre-installed to use this program.

To check the installation you can run the plugin's tests:

``scipion tests topaz.tests.test_protocol_topaz.TestTopaz``


Configuration variables
-----------------------

**CONDA_ACTIVATION_CMD**: If undefined, it will rely on conda command being in the
PATH (not recommended), which can lead to execution problems mixing scipion
python with conda ones. One example of this could can be seen below but
depending on your conda version and shell you will need something different:

CONDA_ACTIVATION_CMD = eval "$(/extra/miniconda3/bin/conda shell.bash hook)"

**TOPAZ_ENV_ACTIVATION** (default = conda activate topaz-0.2.5):
Command to activate the Topaz environment.

Supported versions
------------------

0.2.3, 0.2.4, 0.2.5

Protocols
---------

    * import training model
    * picking
    * training

References
----------

    * Bepler, T. et al. Positive-unlabeled convolutional neural networks for particle picking in cryo-electron micrographs. arXiv (2018).



            

Raw data

            {
    "_id": null,
    "home_page": "https://github.com/scipion-em/scipion-em-topaz",
    "name": "scipion-em-topaz",
    "maintainer": "",
    "docs_url": null,
    "requires_python": "",
    "maintainer_email": "",
    "keywords": "scipion cryo-em image-processing scipion-3.0",
    "author": "I2PC",
    "author_email": "scipion@cnb.csic.es",
    "download_url": "https://files.pythonhosted.org/packages/18/5f/ef6dc12a08026eb757b6aa573da7bc14c4bdceb08b882b2352a80e88ccbb/scipion-em-topaz-3.0.2.tar.gz",
    "platform": null,
    "description": "============\nTopaz plugin\n============\n\nThis plugin allows to use Topaz programs within the Scipion framework.\nIt can denoise, pre-process micrographs and pick particles within Scipion.\n\n`Topaz <https://github.com/tbepler/topaz>`_ is a pipeline for particle detection in cryo-electron\nmicroscopy images which uses convolutional neural networks trained from\npositive and unlabeled examples.\n\n.. image:: https://img.shields.io/pypi/v/scipion-em-topaz.svg\n        :target: https://pypi.python.org/pypi/scipion-em-topaz\n        :alt: PyPI release\n\n.. image:: https://img.shields.io/pypi/l/scipion-em-topaz.svg\n        :target: https://pypi.python.org/pypi/scipion-em-topaz\n        :alt: License\n\n.. image:: https://img.shields.io/pypi/pyversions/scipion-em-topaz.svg\n        :target: https://pypi.python.org/pypi/scipion-em-topaz\n        :alt: Supported Python versions\n\n.. image:: https://img.shields.io/sonar/quality_gate/scipion-em_scipion-em-topaz?server=https%3A%2F%2Fsonarcloud.io\n        :target: https://sonarcloud.io/dashboard?id=scipion-em_scipion-em-topaz\n        :alt: SonarCloud quality gate\n\n.. image:: https://img.shields.io/pypi/dm/scipion-em-topaz\n        :target: https://pypi.python.org/pypi/scipion-em-topaz\n        :alt: Downloads\n\nInstallation\n------------\n\nYou will need to use 3.0+ version of Scipion to be able to run these protocols. To install the plugin, you have two options:\n\na) Stable version\n\n    It can be installed in user mode via Scipion plugin manager (**Configuration** > **Plugins**) or using the command line:\n\n    .. code-block::\n\n        scipion installp -p scipion-em-topaz\n\nb) Developer's version\n\n    * download repository\n\n    .. code-block::\n\n        git clone -b devel https://github.com/scipion-em/scipion-em-topaz.git\n\n    * install\n\n    .. code-block::\n\n        scipion installp -p /path/to/scipion-em-topaz --devel\n\nTopaz software will be installed automatically with the plugin but you can also use an existing installation by providing *TOPAZ_ENV_ACTIVATION* (see below).\n\n**Important:** you need to have conda (miniconda3 or anaconda3) pre-installed to use this program.\n\nTo check the installation you can run the plugin's tests:\n\n``scipion tests topaz.tests.test_protocol_topaz.TestTopaz``\n\n\nConfiguration variables\n-----------------------\n\n**CONDA_ACTIVATION_CMD**: If undefined, it will rely on conda command being in the\nPATH (not recommended), which can lead to execution problems mixing scipion\npython with conda ones. One example of this could can be seen below but\ndepending on your conda version and shell you will need something different:\n\nCONDA_ACTIVATION_CMD = eval \"$(/extra/miniconda3/bin/conda shell.bash hook)\"\n\n**TOPAZ_ENV_ACTIVATION** (default = conda activate topaz-0.2.5):\nCommand to activate the Topaz environment.\n\nSupported versions\n------------------\n\n0.2.3, 0.2.4, 0.2.5\n\nProtocols\n---------\n\n    * import training model\n    * picking\n    * training\n\nReferences\n----------\n\n    * Bepler, T. et al. Positive-unlabeled convolutional neural networks for particle picking in cryo-electron micrographs. arXiv (2018).\n\n\n",
    "bugtrack_url": null,
    "license": "",
    "summary": "Topaz ready to use in scipion.",
    "version": "3.0.2",
    "project_urls": {
        "Bug Reports": "https://github.com/scipion-em/scipion-em-topaz/issues",
        "Homepage": "https://github.com/scipion-em/scipion-em-topaz",
        "Source": "https://github.com/scipion-em/scipion-em-topaz/"
    },
    "split_keywords": [
        "scipion",
        "cryo-em",
        "image-processing",
        "scipion-3.0"
    ],
    "urls": [
        {
            "comment_text": "scipion-3.0",
            "digests": {
                "blake2b_256": "ad7b563d52b8e4e992b5e83dc4437e364a7a93ad54bbd75c94aed859f5dda8c5",
                "md5": "677eab295537ef3458e870248a9dafd0",
                "sha256": "30c7b85d0d618d70be28611f944eb3fb328ac407499d87f7781e82446dbd597f"
            },
            "downloads": -1,
            "filename": "scipion_em_topaz-3.0.2-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "677eab295537ef3458e870248a9dafd0",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": null,
            "size": 45686,
            "upload_time": "2023-05-12T08:40:53",
            "upload_time_iso_8601": "2023-05-12T08:40:53.508377Z",
            "url": "https://files.pythonhosted.org/packages/ad/7b/563d52b8e4e992b5e83dc4437e364a7a93ad54bbd75c94aed859f5dda8c5/scipion_em_topaz-3.0.2-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "scipion-3.0",
            "digests": {
                "blake2b_256": "185fef6dc12a08026eb757b6aa573da7bc14c4bdceb08b882b2352a80e88ccbb",
                "md5": "f41c19cf26b3b44690012778a387a7d1",
                "sha256": "87a88ad6fbbbc733fbc59b0338776e5a9005fe8c22abbd88701cecfed2af4c11"
            },
            "downloads": -1,
            "filename": "scipion-em-topaz-3.0.2.tar.gz",
            "has_sig": false,
            "md5_digest": "f41c19cf26b3b44690012778a387a7d1",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": null,
            "size": 38673,
            "upload_time": "2023-05-12T08:41:10",
            "upload_time_iso_8601": "2023-05-12T08:41:10.011467Z",
            "url": "https://files.pythonhosted.org/packages/18/5f/ef6dc12a08026eb757b6aa573da7bc14c4bdceb08b882b2352a80e88ccbb/scipion-em-topaz-3.0.2.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2023-05-12 08:41:10",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "scipion-em",
    "github_project": "scipion-em-topaz",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": true,
    "lcname": "scipion-em-topaz"
}
        
Elapsed time: 0.08935s