codonrs

Crates.iocodonrs
lib.rscodonrs
version0.2.7
created_at2025-03-24 17:22:44.332695+00
updated_at2025-06-23 12:49:30.770141+00
descriptionCalculate relative synonymous codon usage for coding DNA sequences in a fasta file
homepage
repositoryhttps://github.com/mcgilmore/codonrs
max_upload_size
id1604023
size119,091
Michael G (mcgilmore)

documentation

README

codonrs

codonrs is a small crate for rapidly calculating relative synonymous codon usage (RSCU) values for coding DNA sequences, for analyses of codon usage bias. The crate can be used as a command-line utility with the codonrs command, or used in other crates via the analysis mod.

Command-line usage

Required arguments

Input: -i/--input: A multi-fasta file with the sequences to be analysed as individual fasta entries. Sequences whose length is not a multiple of three will be ignored

Output: -o/--output: Prefix for the output files. Three files are output by default:

  • prefix_codon.csv: raw codon counts for each CDS.
  • prefix_amino_acids.csv: amino acid counts for each CDS, determined from the chosen translation table.
  • prefix_rscu.csv: calculated RSCU values for each CDS.

Optional arguments

Translation table: -t/--table: Integer representing NCBI translation table to be used for codon counts and RSCU calculation. See tables here. Defaults to 1: the standard code.

License: GPL-3.0

Commit count: 41

cargo fmt