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.
describe check-transcripts step in readme/sbin/src
- Loading branch information
Showing
5 changed files
with
20 additions
and
29 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
This file was deleted.
Oops, something went wrong.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,12 @@ | ||
#!/usr/bin/env bash | ||
|
||
# This script ... | ||
# Find transcripts in the current UTA database version which are not in the txinfo file, | ||
# and write those transcripts to the check-transcripts.txt file. | ||
# | ||
# source_uta_v is the UTA version before the update procedure. | ||
# uta-extract, which produces the needed txinfo file, must run before this script. | ||
# Any action taken with respect to the identified transcripts is case-dependent and optional. | ||
# | ||
# source_uta_v is the current UTA database version. | ||
# working_dir stores input and output files. | ||
# log_dir stores log files. | ||
|
||
|
@@ -20,7 +24,5 @@ fi | |
|
||
mkdir -p "$log_dir" | ||
|
||
# Report transcripts which have already loaded into UTA but are not part of the incoming transcript set. | ||
# These transcripts are at risk of missing updates to information such as transl_except. ??? | ||
UTA_USE_SCHEMA=false uta --conf=etc/global.conf --conf=etc/[email protected] check-transcripts --prefixes=NM,NR "$working_dir/txinfo.gz" "$source_uta_v" "$working_dir/check-transcripts.txt" 2>&1 | \ | ||
tee "$log_dir/check-transcripts.log" |
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