معرفی شرکت ها


cwldep-1.0


Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر
Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر
Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر
Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر
Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر

توضیحات

Common workflow language dependency manager
ویژگی مقدار
سیستم عامل -
نام فایل cwldep-1.0
نام cwldep
نسخه کتابخانه 1.0
نگهدارنده []
ایمیل نگهدارنده []
نویسنده Common workflow language working group
ایمیل نویسنده common-workflow-language@googlegroups.com
آدرس صفحه اصلی https://github.com/common-workflow-language/cwldep
آدرس اینترنتی https://pypi.org/project/cwldep/
مجوز Apache 2.0
# Common Workflow Language dependency manager This tool helps you to import tools and workflows from other sources for use in your own workflow. # Setup It is highly recommended to setup virtual environment before installing `cwldep`: ``` virtualenv -p python2 venv # Create a virtual environment, can use `python3` as well source venv/bin/activate # Activate environment before installing `cwldep` ``` Install from source: ``` git clone https://github.com/common-workflow-language/cwldep.git # clone cwldep repo cd cwldep # Switch to source directory python setup.py install cwldep -h # Check if the installation works correctly ``` # Adding file dependencies ``` cwldep add myfile.cwl https://raw.githubusercontent.com/common-workflow-language/workflows/master/tools/samtools-faidx.cwl ``` This will download the CWL file *and its dependencies* to `raw.githubusercontent.com/common-workflow-language/workflows/master/tools` Include it in your workflow as a relative file reference: ``` steps: step1: in: ... out: ... run: raw.githubusercontent.com/common-workflow-language/workflows/master/tools/samtools-faidx.cwl ``` # Changing the install target ``` cwldep add --install-to samtools myfile.cwl https://raw.githubusercontent.com/common-workflow-language/workflows/master/tools/samtools-faidx.cwl ``` # Using archives You can also import archives (.tar.gz, .tar.bz2, and .zip): ``` cwldep add myfile.cwl https://github.com/common-workflow-language/workflows/archive/draft2.tar.gz ``` This will download and extract to the local directory `github.com/common-workflow-language/workflows/archive` # Using git upstream You can also import git repositories: ``` cwldep add myfile.cwl https://github.com/common-workflow-language/workflows ``` This will clone into the local directory `github.com/common-workflow-language/workflows` ``` cwldep add --set-version=draft-2 myfile.cwl https://github.com/common-workflow-language/workflows ``` # Installing dependencies This will install any dependencies listed in `myfile.cwl` ``` cwldep install myfile.cwl ``` # Checking if upstream dependencies have changed This will report if the upstream dependencies listed in `myfile.cwl` have changed ``` cwldep check myfile.cwl ``` # Updating dependencies This will install updated dependencies: ``` cwldep update myfile.cwl ``` # Deleting unreferenced dependencies This will delete any dependencies listed in the ".dep.lock" file that are not referenced by `myfile.cwl`. ``` cwldep clean myfile.cwl ```


نیازمندی

مقدار نام
- cwltool
- python-dateutil


زبان مورد نیاز

مقدار نام
>=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, <4 Python


نحوه نصب


نصب پکیج whl cwldep-1.0:

    pip install cwldep-1.0.whl


نصب پکیج tar.gz cwldep-1.0:

    pip install cwldep-1.0.tar.gz