flowchart LR
classDef greenfill fill:#5B888C,stroke:#333,stroke-width:1,color:#fff;
classDef dbfill fill:#E2F0F1,stroke:#333,stroke-width:1,color:#333;
%% Workflow boxes
A[Raw reads] -->|FASTQ| B[Quality control]
B -->|FASTQ| C[Quality filtering]
C -->|FASTQ| D[Mapping to <br> Reference DB]
D -->|PAF| E[Quality filtering]
E -->|PAF| F[Count table]
%% Reference database node
DB[(16S <br> Reference <br> Database)] -->|FASTA| D
%% Assign classes after nodes exist
class A,B,C,D,E,F greenfill
class DB dbfill
%% Arrow styles (index starts at 0 for first arrow)
linkStyle 0,1,2,3,4,5 stroke:#5B888C,stroke-width:2,color:#000, fill: none