ワンクリックで
bam-to-fastq
Use when converting BAM alignment files to FASTQ format, including paired-end data requiring separate or interleaved output.
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
メニュー
Use when converting BAM alignment files to FASTQ format, including paired-end data requiring separate or interleaved output.
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
SOC 職業分類に基づく
Use when joint-genotyping one or more germline gVCFs into a cohort VCF with GATK GenotypeGVCFs.
Use when running GATK HaplotypeCaller to emit per-sample germline variant calls or gVCFs from analysis-ready BAM/CRAM inputs.
Use when splitting mixed accession-like text into one lowercase token per line in EDirect-style text pipelines.
Use when converting ACE assembly files into SAM while preserving legacy ACE-specific padded or contig-sequence behavior.
Use when pretty-printing tab-delimited output with left, center, right, or decimal-aware numeric alignment in EDirect text workflows.
Use when masking columns or coordinate ranges in multiple-sequence alignments before downstream HMMER or alignment-processing steps.
| name | bam-to-fastq |
| description | Use when converting BAM alignment files to FASTQ format, including paired-end data requiring separate or interleaved output. |
| disable-model-invocation | true |
| user-invocable | true |
bamToFastq -i input.bam -fq reads.fq [options]/home/vimalinx/miniforge3/envs/bio/bin/bamToFastqreferences/help.mdR1 and R2 FASTQ files with -fq and -fq2.-tags when the BAM carries R2 / Q2 tags.# 1) Single-end BAM to FASTQ
bamToFastq \
-i reads.bam \
-fq reads.fq
# 2) Paired-end BAM to two FASTQ files
bamToFastq \
-i reads.qname.bam \
-fq reads_R1.fq \
-fq2 reads_R2.fq
# 3) Interleaved paired-end FASTQ
bamToFastq \
-i reads.qname.bam \
-fq /dev/stdout \
-fq2 /dev/stdout > reads.interleaved.fq
-tags) before selecting output mode.samtools fastq before standardizing the pipeline.-i and -fq are required.-fq2 assumes the BAM is grouped or sorted by query name.-tags is specialized behavior for BAMs that carry mate sequence / quality in R2 and Q2; it is not a generic paired-end fix./dev/stdout pattern is convenient but easy to misuse in shells and pipelines, so redirect carefully.-h for help; the wrapper does not support clean GNU-style --help / --version.