Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add documentation describing the output format of out.hla.* files (doc fix only) #39

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 5 additions & 1 deletion bwakit/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,10 @@ The last mapping command line will generate the following files:

* `out.log.*`: bwa-mem, samblaster and HLA typing log files.

The format of `out.hla.top` and `out.hla.all` output files is TAB delimited with
each GT line consisting of allele1, allele2, #mismatches/gaps on primary exons, #mismatches/gaps
on other exons and #exons used in typing. If unsure, use the first GT line as the final genotype.

Bwakit can be [downloaded here][res]. It is only available to x86_64-linux. The
scripts in the package are available in the [bwa/bwakit][kit] directory.
Packaging is done manually for now.
Expand Down Expand Up @@ -74,7 +78,7 @@ bwa.kit
|-- README.md This README file.
|-- run-bwamem *Entry script* for the entire mapping pipeline.
|-- bwa *BWA binary*
|-- k8 Interpretor for *.js scripts.
|-- k8 Interpreter for *.js scripts.
|-- bwa-postalt.js Post-process alignments to ALT contigs/decoys/HLA genes.
|-- htsbox Used by run-bwamem for shuffling BAMs and BAM=>FASTQ.
|-- samblaster MarkDuplicates for reads from the same library. v0.1.20
Expand Down
2 changes: 1 addition & 1 deletion bwakit/typeHLA.js
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ if (arguments.length == getopt.ind) {
print("");
print("Note: The output is TAB delimited with each GT line consisting of allele1, allele2,");
print(" #mismatches/gaps on primary exons, #mismatches/gaps on other exons and #exons");
print(" used in typing. If unusure, use the first GT line as the final genotype.\n");
print(" used in typing. If unsure, use the first GT line as the final genotype.\n");
exit(1);
}

Expand Down