Skip to content

Commit

Permalink
Kpash update pysam version (#101)
Browse files Browse the repository at this point in the history
* bump pipeval version to 0.22.1

* fix typo

* update CHANGELOG
  • Loading branch information
kiarod authored Aug 28, 2024
1 parent c1c5364 commit 7e70afd
Show file tree
Hide file tree
Showing 3 changed files with 28 additions and 19 deletions.
3 changes: 2 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,8 @@ This project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.htm
---

## [Unreleased]

### Changed
- Update `pysam` version to `0.22.1`
---

## [5.1.0] - 2024-07-08
Expand Down
40 changes: 24 additions & 16 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,21 +1,29 @@
# PipeVal

- [Overview](#overview)
- [PipeVal](#pipeval)
- [Overview](#overview)
- [Validation Flowchart](#validation-flowchart)
- [Docker](#docker)
- [Installation](#installation)
- [From GitHub](#install-directly-from-github)
- [From local](#install-from-cloned-repository)
- [Usage](#usage)
- [validate](#validate)
- [Supported Types](#supported-types)
- [Expected Output](#expected-output)
- [generate-checksum](#generate-checksum)
- [Development](#development)
- [References](#references)
- [Discussions](#discussions)
- [Contributors](#contributors)
- [License](#license)
- [Docker](#docker)
- [Installation](#installation)
- [Installing `libmagic`](#installing-libmagic)
- [Install directly from GitHub through SSH](#install-directly-from-github-through-ssh)
- [Install directly from GitHub through HTTPS](#install-directly-from-github-through-https)
- [Install from cloned repository](#install-from-cloned-repository)
- [Usage](#usage)
- [`pipeval validate`](#pipeval-validate)
- [Supported Types](#supported-types)
- [Expected Output](#expected-output)
- [Validation Skipping](#validation-skipping)
- [`pipeval generate-checksum`](#pipeval-generate-checksum)
- [Development](#development)
- [References](#references)
- [Pysam](#pysam)
- [Publications](#publications)
- [VCFtools](#vcftools)
- [Publications](#publications-1)
- [Discussions](#discussions)
- [Contributors](#contributors)
- [License](#license)

## Overview
PipeVal is an easy to use CLI tool that can be used to validate different inputs and parameters in various settings, including Nextflow scripts/pipelines. It can be used standalone or using a Docker container.
Expand Down Expand Up @@ -91,7 +99,7 @@ options:
-t, --test-integrity Whether to perform a full integrity test on compressed files
```

The tool will attempt to automatically detect the file type based on extension and perform the approriate validations. The tool will also perform an existence check along with a checksum check if an MD5 or SHA512 checksum exists regardless of file type.
The tool will attempt to automatically detect the file type based on extension and perform the appropriate validations. The tool will also perform an existence check along with a checksum check if an MD5 or SHA512 checksum exists regardless of file type.

#### Supported Types

Expand Down
4 changes: 2 additions & 2 deletions setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -15,15 +15,15 @@ classifiers =
Operating System :: OS Independent

[options]
package_dir =
package_dir =
= .
packages = find:
python_requires = >=3.6

install_requires =
mock==4.0.2
pytest==7.2.2
pysam==0.19.0
pysam==0.22.1
python-magic==0.4.27

[options.packages.find]
Expand Down

0 comments on commit 7e70afd

Please sign in to comment.