You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/tutorials/tirmite-pair.md
+27Lines changed: 27 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -618,6 +618,31 @@ tirmite pair \
618
618
--outdir MY_TIR_OUTPUT
619
619
```
620
620
621
+
### Disabling sequence extraction
622
+
623
+
Extracting sequences from a large genome FASTA or BLAST database can be time-consuming. Use `--no-hits` and/or `--no-elements` to skip FASTA output when the sequences are not required.
624
+
625
+
| Flag | Effect |
626
+
|------|--------|
627
+
|`--no-hits`| Skip writing individual terminus hit sequences to FASTA |
628
+
|`--no-elements`| Skip extraction and writing of full-length paired element sequences to FASTA |
629
+
630
+
These flags are independent and can be combined. GFF3 output, summary reports, and flank/insertion-site extraction are unaffected.
631
+
632
+
```bash
633
+
tirmite pair \
634
+
--genome $GENOME \
635
+
--nhmmer-file $NHMMERFILE \
636
+
--hmm-file $HMMFILE \
637
+
--orientation F,R \
638
+
--mincov 0.4 \
639
+
--maxdist 20000 \
640
+
--no-hits \
641
+
--no-elements \
642
+
--gff \
643
+
--outdir MY_TIR_OUTPUT
644
+
```
645
+
621
646
## Key Options Reference
622
647
623
648
| Option | Description |
@@ -647,4 +672,6 @@ tirmite pair \
647
672
|`--tsd-in-model`| The TSD is encoded at the inner end of the terminus HMM model |
648
673
|`--gff-report`| Reporting mode: `all`, `paired`, or `unpaired`|
649
674
|`--gff`| Write GFF3 annotation file |
675
+
|`--no-hits`| Skip writing individual hit sequences to FASTA |
676
+
|`--no-elements`| Skip extraction and writing of paired element sequences to FASTA |
0 commit comments