An open API service indexing awesome lists of open source software.

https://github.com/applicativesystem/rust-fastp-sync

rustic version of fastp each fastp subcommand in a separate multithreaded application
https://github.com/applicativesystem/rust-fastp-sync

bioinformatics bioinformatics-analysis genome-analysis genome-sequencing illumina illumina-sequencing

Last synced: about 2 months ago
JSON representation

rustic version of fastp each fastp subcommand in a separate multithreaded application

Awesome Lists containing this project

README

          

# rust-fastp

- rustic version of fastp each fastp subcommand in a separate multithreaded application
- this part implements the read sync for the fastp.
- making each part multihreaded using rayon.

```
cargo build
```
- to check the order
```
./target/debug/rust-fastp ./sample-files/ordered-files/samp2_L001_R1_001.fastq
./sample-files/ordered-files/samp2_L001_R2_001.fastq
```
- on unordered files
```
./target/debug/rust-fastp ./sample-files/ordered-files/unamp2_L001_R1_001.fastq
./sample-files/unordered-files/samp2_L001_R2_001.fastq
```
Gaurav Sablok