├── .bumpversion.cfg ├── .github └── workflows │ └── build_conda_recipes.yaml ├── LICENSE ├── README.md ├── conda ├── env │ └── yml │ │ └── condabuild.yml └── recipe │ ├── build.sh │ └── meta.yaml ├── setup.py ├── vcf2tsvpy.Rproj └── vcf2tsvpy ├── __init__.py ├── _version.py └── main.py /.bumpversion.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigven/vcf2tsvpy/HEAD/.bumpversion.cfg -------------------------------------------------------------------------------- /.github/workflows/build_conda_recipes.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigven/vcf2tsvpy/HEAD/.github/workflows/build_conda_recipes.yaml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigven/vcf2tsvpy/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigven/vcf2tsvpy/HEAD/README.md -------------------------------------------------------------------------------- /conda/env/yml/condabuild.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigven/vcf2tsvpy/HEAD/conda/env/yml/condabuild.yml -------------------------------------------------------------------------------- /conda/recipe/build.sh: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env bash 2 | set -x 3 | 4 | $PYTHON -m pip install . --no-deps -v 5 | -------------------------------------------------------------------------------- /conda/recipe/meta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigven/vcf2tsvpy/HEAD/conda/recipe/meta.yaml -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigven/vcf2tsvpy/HEAD/setup.py -------------------------------------------------------------------------------- /vcf2tsvpy.Rproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigven/vcf2tsvpy/HEAD/vcf2tsvpy.Rproj -------------------------------------------------------------------------------- /vcf2tsvpy/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vcf2tsvpy/_version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigven/vcf2tsvpy/HEAD/vcf2tsvpy/_version.py -------------------------------------------------------------------------------- /vcf2tsvpy/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sigven/vcf2tsvpy/HEAD/vcf2tsvpy/main.py --------------------------------------------------------------------------------