A small tool to convert lower case fasta sequences to upper case and save as a new fasta file.
Find a file
2025-11-20 12:13:16 -03:00
src/fasta_uppercaser start testing 2025-01-23 07:30:04 -03:00
tests start testing 2025-01-23 07:30:04 -03:00
web terminal gifs 2025-11-20 12:08:32 -03:00
.gitignore First working version 2024-12-03 17:36:10 -03:00
LICENSE.txt add license 2024-12-04 14:43:29 -03:00
main.py start testing 2025-01-23 07:30:04 -03:00
pyproject.toml updated dependencies 2025-11-19 17:13:47 -03:00
README.md Updated README.md 2025-11-20 12:13:16 -03:00

fasta_uppercaser

A small tool to convert lower case fasta sequences to upper case and save as a new fasta file.

Usage

First of all, always have a copy of the original file in a safe place, then...

  1. Create and activate your virtual environment and install fasta_uppercaser.
  2. Call the application followed by the original file path (the one containing the lower case letters) and the destination file path (file that will contain the uppercase only letters).
fasta_uppercaser my_lowercase_file.fasta my_uppercase_file.fasta
  1. Never use the same filename for original and destination files.
  2. Make sure all file paths are correct before start.
  3. Make sure to have read and write permissions in the folder where the original file is and the one where the destination file will be.

Use

Installation

In a virtual environment:

pip install ./fasta_uppercaser-<version>-py3-none-any.whl

Installation

You may also install it using pipx.

License

fasta_uppercaser is distributed under the terms of the LGPL-3.0-or-later license.