https://github.com/alexcoppe/from_fastq_to_fasta
:pill: A software for converting FASTQ files to FASTA ones
https://github.com/alexcoppe/from_fastq_to_fasta
Last synced: 5 days ago
JSON representation
:pill: A software for converting FASTQ files to FASTA ones
- Host: GitHub
- URL: https://github.com/alexcoppe/from_fastq_to_fasta
- Owner: alexcoppe
- License: mit
- Created: 2019-08-28T21:30:24.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2019-09-02T20:58:48.000Z (over 5 years ago)
- Last Synced: 2025-02-17T09:35:30.124Z (3 months ago)
- Language: C
- Homepage:
- Size: 5.86 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# from_fastq_to_fasta
### :pill: A software for converting FASTQ files to FASTA ones### Compiling the software
Download the software from [github](https://github.com/alexcoppe/from_fastq_to_fasta), enter the directory containg from_fastq_to_fasta.c and compile it with:
```
make
```### Getting the FASTA file
The following command outputs the results to the standard output (STDOUT)
```
from_fastq_to_fasta reads.fastq
```For redirectoring the output to a file:
```
from_fastq_to_fasta reads.fastq > reads.fasta
```