{"id":48054952,"url":"https://github.com/poseidon-framework/poseidon-analysis-hs","last_synced_at":"2026-04-04T14:25:19.932Z","repository":{"id":40633493,"uuid":"445293970","full_name":"poseidon-framework/poseidon-analysis-hs","owner":"poseidon-framework","description":"A tool to analyse genotype data (optionally in the poseidon data format)","archived":false,"fork":false,"pushed_at":"2026-03-18T02:44:40.000Z","size":1390,"stargazers_count":4,"open_issues_count":10,"forks_count":0,"subscribers_count":2,"default_branch":"main","last_synced_at":"2026-03-18T10:46:42.750Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"","language":"Haskell","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/poseidon-framework.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2022-01-06T19:55:43.000Z","updated_at":"2026-03-18T02:44:43.000Z","dependencies_parsed_at":"2023-02-08T07:30:52.947Z","dependency_job_id":"34645f6b-1208-497b-8fd0-3cacf49f3c7c","html_url":"https://github.com/poseidon-framework/poseidon-analysis-hs","commit_stats":null,"previous_names":[],"tags_count":26,"template":false,"template_full_name":null,"purl":"pkg:github/poseidon-framework/poseidon-analysis-hs","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/poseidon-framework%2Fposeidon-analysis-hs","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/poseidon-framework%2Fposeidon-analysis-hs/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/poseidon-framework%2Fposeidon-analysis-hs/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/poseidon-framework%2Fposeidon-analysis-hs/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/poseidon-framework","download_url":"https://codeload.github.com/poseidon-framework/poseidon-analysis-hs/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/poseidon-framework%2Fposeidon-analysis-hs/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":31402405,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-04T10:20:44.708Z","status":"ssl_error","status_checked_at":"2026-04-04T10:20:06.846Z","response_time":60,"last_error":"SSL_read: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2026-04-04T14:25:14.835Z","updated_at":"2026-04-04T14:25:19.924Z","avatar_url":"https://github.com/poseidon-framework.png","language":"Haskell","readme":"[![CI](https://github.com/poseidon-framework/poseidon-analysis-hs/actions/workflows/main.yml/badge.svg)](https://github.com/poseidon-framework/poseidon-analysis-hs/actions/workflows/main.yml)\n[![Coverage Status](https://img.shields.io/codecov/c/github/poseidon-framework/poseidon-analysis-hs/main.svg)](https://codecov.io/github/poseidon-framework/poseidon-analysis-hs?branch=main)\n[![GitHub release (latest by date including pre-releases)](https://img.shields.io/github/v/release/poseidon-framework/poseidon-analysis-hs?include_prereleases) ![GitHub all releases](https://img.shields.io/github/downloads/poseidon-framework/poseidon-analysis-hs/total)](https://github.com/poseidon-framework/poseidon-analysis-hs/releases)\n[![Install with Bioconda](https://anaconda.org/bioconda/poseidon-xerxes/badges/version.svg)](https://anaconda.org/bioconda/poseidon-xerxes)\n[![Anaconda-Server Badge](https://anaconda.org/bioconda/poseidon-xerxes/badges/downloads.svg)](https://anaconda.org/bioconda/poseidon-xerxes)\n\n# poseidon-analysis-hs\nTools to analyse genotype data in the Poseidon package format. The main executable within this package is called `xerxes`.\n\n**Detailed user documentation can be found on our [website](https://poseidon-framework.github.io/#/xerxes).**\n\n***\n\n## For (Haskell) developers\n\nTo install the development version of poseidon-analysis-hs/xerxes you can follow these steps:\n\n1. Install the Haskell build tool [Stack](https://docs.haskellstack.org/en/stable/README/)\n2. Clone this repository\n3. Execute `stack install` inside the repository to build the tool and copy the executables to `~/.local/bin` (which you may want to add to your path). This will install the compiler and all dependencies into folders that won't interfere with any installation you might already have.\n4. To run the tests, execute `stack test` inside the repository to build and run tests.\n\n### Preparing a new stable release\n\nThe Github Actions script in `.github/workflows/release.yml` registers a new draft release and automatically builds and uploads xerxes binaries when a new Git tag with the prefix `v*` is pushed. \n\n```bash\n# locally register a new tag (e.g. 0.3.1)\ngit tag -a v0.3.1 -m \"see CHANGELOG.md\"\n# push tag\ngit push origin v0.3.1\n```\n\nIn case of a failing build delete the tag and the release draft on Github and then delete the tag locally with\n\n```bash\ngit tag -d v0.3.1\n```\n\nbefore rerunning the procedure above.","funding_links":[],"categories":[],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fposeidon-framework%2Fposeidon-analysis-hs","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fposeidon-framework%2Fposeidon-analysis-hs","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fposeidon-framework%2Fposeidon-analysis-hs/lists"}