Metadata-Version: 2.1
Name: rnaseeker
Version: 1.0.0
Summary: RNA-seq scripts and libraries
Home-page: https://github.com/jtompkin/rnaseeker
Author: Josh Tompkin
Author-email: jtompkindev@gmail.com
License: MIT
Keywords: rna,rnaseq,dna,fasta,fastq,bio,gene
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Requires-Python: >=3.7
Description-Content-Type: text/markdown
License-File: LICENSE

# RNAseeker

## RNA-seq scripts and libraries

Josh Tompkin

<jtompkin-dev@proton.me>

<https://github.com/jtompkin/rnaseeker>

### Install with pip

```bash
pip3 install rnaseeker
```

### Command line programs

- go_filter: Filter gProfiler output and format for Revigo

```bash
rnaseeker go-filter [-h] [-v] [-c TERM_COLUMN] [-d IN_DELIMITER] [-o OUT_FILE] [-p PVAL_COLUMN] [-i ID_COLUMN] [-s OUT_DELIMITER] [--no-format] [--header] [-f FILTER_TERMS] [--filter-file FILTER_PATH] gProfiler_file
```

- fasta_filter: Filter fasta sequences by length and 'N' content

```bash
rnaseeker fasta-filter [-h] [-o OUT_PATH] [-l LINE_LENGTH] fasta_path minimum_basepairs
```

- fasta_split: Split fasta/fastq files

```bash
rnaseeker fasta-split [-h] [-v] [-i INPUT] [-f {fasta,fastq}] [-s] [-p [PREFIX]] [--header-prefix [REGEX]] [-d DIRECTORY] [-e EXTENSION] number
```

### Python libraries

- sequence
  - sequence_io: Manipulate sequence files and store sequence information
