From d13e5d36a3c55ddafa78af24fbc091e64a4146ce Mon Sep 17 00:00:00 2001 From: d33bs Date: Tue, 18 Feb 2025 08:23:55 -0700 Subject: [PATCH 1/4] add doi info and minor touch-ups --- CITATION.cff | 7 +++++++ readme.md | 5 +++++ 2 files changed, 12 insertions(+) diff --git a/CITATION.cff b/CITATION.cff index 6cda1b06..abecfcfe 100644 --- a/CITATION.cff +++ b/CITATION.cff @@ -17,11 +17,18 @@ authors: - given-names: Erik family-names: Serrano orcid: 'https://orcid.org/0000-0003-4188-9080' + - given-names: Vincent + family-names: Rubinetti + orcid: 'https://orcid.org/0000-0002-4655-3773' - given-names: Gregory family-names: Way orcid: 'https://orcid.org/0000-0002-0503-9348' repository-code: 'https://github.com/cytomining/CytoTable' url: 'https://cytomining.github.io/CytoTable/' +identifiers: + - description: Software DOI + type: doi + value: "10.5281/zenodo.14888111" abstract: >- Transform CellProfiler and DeepProfiler data for processing image-based profiling readouts with Pycytominer and other Cytomining tools. keywords: diff --git a/readme.md b/readme.md index 4cb161c9..301bb68d 100644 --- a/readme.md +++ b/readme.md @@ -2,6 +2,11 @@ # CytoTable +![PyPI - Version](https://img.shields.io/pypi/v/cytotable) +[![Build Status](https://github.com/cytomining/cytotable/actions/workflows/test.yml/badge.svg?branch=main)](https://github.com/cytomining/cytotable/actions/workflows/test.yml?query=branch%3Amain) +[![Poetry](https://img.shields.io/endpoint?url=https://python-poetry.org/badge/v0.json)](https://python-poetry.org/) +[![Software DOI badge](https://zenodo.org/badge/DOI/10.5281/zenodo.14888111.svg)](https://doi.org/10.5281/zenodo.14888111) + ![dataflow](https://raw.githubusercontent.com/cytomining/cytotable/main/docs/source/_static/dataflow.svg?raw=true) _Diagram showing data flow relative to this project._ From 45844f9663585c4e16180e271da008fe42c4d84c Mon Sep 17 00:00:00 2001 From: d33bs Date: Tue, 18 Feb 2025 08:24:04 -0700 Subject: [PATCH 2/4] change to shorter name --- .github/workflows/test.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index d586edb5..d4d974ca 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -11,7 +11,7 @@ on: - cron: "0 7 * * 3" jobs: - run_tests: + tests: strategy: matrix: # matrixed execution for parallel gh-action performance increases From 10a202e363c7c8312b4a7635a24c084e4e200020 Mon Sep 17 00:00:00 2001 From: d33bs Date: Tue, 18 Feb 2025 08:24:12 -0700 Subject: [PATCH 3/4] linting --- .pre-commit-config.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index 17ac0013..64c907f6 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -50,7 +50,7 @@ repos: hooks: - id: blacken-docs - repo: https://github.com/PyCQA/bandit - rev: 1.8.2 + rev: 1.8.3 hooks: - id: bandit args: ["-c", "pyproject.toml"] From 8849351c635f8c273291d5e76d2cc48db02e8e16 Mon Sep 17 00:00:00 2001 From: d33bs Date: Tue, 18 Feb 2025 08:33:38 -0700 Subject: [PATCH 4/4] update name --- .github/workflows/test.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index d4d974ca..93bcff84 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -47,7 +47,7 @@ jobs: # smaller tests first. run_large_data_tests: runs-on: ubuntu-22.04 - needs: run_tests + needs: tests steps: - name: Checkout uses: actions/checkout@v4