-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
4 changed files
with
27 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
# Transcoorder | ||
|
||
Convert SAM/BAM files with transcript coordinates to SAM files with genomic coordinates | ||
|
||
``` | ||
$ transcoord -h | ||
usage: transcoord [-h] [-o OUT] [-t TAG_NAME] [--debug] [--version] gtf bam fasta | ||
positional arguments: | ||
gtf GTF file containing transcripts | ||
bam SAM or BAM files aligned to transcriptome | ||
fasta FASTA format assembly coresponding to GTF | ||
optional arguments: | ||
-h, --help show this help message and exit | ||
-o OUT, --out OUT output file for genomic SAM (default: stdout) | ||
-t TAG_NAME, --tag-name TAG_NAME | ||
SAM tag name for storing transcript identifier. default: ZT | ||
--debug enable debugging | ||
--version display version number | ||
``` | ||
|
||
Note: This is an incomplete work in progress script and you shouldn't rely on its output. I | ||
made this as a proof of concept, and never had time to finish. It currently runs very slowly | ||
and only handles reads that are mapped entirely within an exon. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters