fxtools 0.2.39

A collection of commandline Fasta/Fastq utility tools
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
# [ `fxtools fix` ]

## Summary

This command will replace all nucleotides not matching: `[ACTGNactgn]`
with the missing nucleotide `N`.

### Parameters

Default will write to stdout, but you can provide an output file with the `-o` flag.

## Usage

```bash
fxtools fix \
  -i <input_fastx> \
  -o <output_fastx>
```