forked from biocommons/uta
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(IPVC-2335): add the load-seqinfo step (#22)
- Loading branch information
Showing
1 changed file
with
4 additions
and
2 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 |
---|---|---|
|
@@ -64,12 +64,14 @@ uta --conf=etc/global.conf --conf=etc/[email protected] load-txinfo "$worki | |
uta --conf=etc/global.conf --conf=etc/[email protected] load-exonset "$working_dir/exonsets.gz" 2>&1 | \ | ||
tee "$log_dir/load-exonsets.log" | ||
|
||
# Load seqinfo into the seq and seqanno tables. | ||
uta --conf=etc/global.conf --conf=etc/[email protected] load-seqinfo "$loading_dir/seqinfo.gz" 2>&1 | \ | ||
tee "$logs_dir/load-seqinfo.log" | ||
|
||
# Create cigar strings for all rows in tx_alt_exon_pairs_v view and update exon_aln table. | ||
uta --conf=etc/global.conf --conf=etc/[email protected] align-exons 2>&1 | \ | ||
tee "$log_dir/align-exons.log" | ||
|
||
# Load seqinfo? | ||
|
||
### run diff | ||
sbin/uta-diff "$source_uta_v" "$loading_uta_v" | ||
|
||
|