1.0.0 • Published 11 months ago
dna-to-rna-converter v1.0.0
DNA to RNA Converter
Description
This package provides a function to convert DNA sequences into RNA sequences by replacing the nucleotides according to standard transcription rules.
Installation
You can install the package via npm:
npm install dna-to-rna-converter
Usage
Here is an example of how to use the package:
const convertDnaToRna = require('dna-to-rna-converter');
const dnaSequence = 'ATGC';
const rnaSequence = convertDnaToRna(dnaSequence);
console.log(rnaSequence); // Output: UACG
Running Tests
To run the tests, use the following command:
npm test
1.0.0
11 months ago