Metadata-Version: 2.1
Name: fastq-statistic
Version: 0.1.5
Summary: 
Home-page: https://github.com/maoyibo/fastq_statistic
License: GPL-3.0-or-later
Author: Mao Yibo
Author-email: maoyibo@gmail.com
Requires-Python: >=3.6,<4.0
Classifier: License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)
Classifier: Operating System :: POSIX :: Linux
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Topic :: Scientific/Engineering :: Bio-Informatics
Requires-Dist: matplotlib (>=3.3.3,<4.0.0)
Requires-Dist: numpy (>=1.19.5,<2.0.0)
Requires-Dist: pandas (<1.2.0)
Requires-Dist: typer (>=0.3.2,<0.4.0)
Description-Content-Type: text/markdown

Fastq Statistic
===============
Calculate statistics for Fastq Files.  

# Requirement
Python: 3.6 or upper  

# Install
Download the release whl file.  

```bash
user@linux:~$ python3 -m pip install fastq-statistic
```

# Usage
```bash
user@linux:~$ fastq-statistic --help
Usage: fastq-statistic [OPTIONS] READ1 [READ2]

Arguments:
  READ1    Read1 fastq path or fastq path  [required]
  [READ2]  Read2 filepath or None

Options:
  --sampleid TEXT                 SampleID, default is the first item of
                                  filename splited by underscore(_)

  --result PATH                   Result csv file name, plot with use the same
                                  name.

  --help                          Show this message and exit.

```
