-
Notifications
You must be signed in to change notification settings - Fork 11
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #193 from togoid/main
release 2023-10-16
- Loading branch information
Showing
22 changed files
with
2,818 additions
and
2,080 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 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,28 @@ | ||
BEGIN { | ||
RS="//\n"; | ||
FS="\n"; | ||
ac = ""; | ||
pr = ""; | ||
OFS="\t"; | ||
} | ||
|
||
{ | ||
for (i=1; i<=NF; i++) { | ||
if ($i ~ /^AC/) { | ||
split($i, ac_arr, " "); | ||
ac = ac_arr[2]; | ||
gsub(/;$/, "", ac); # 行末のセミコロンを削除 | ||
} | ||
if ($i ~ /^PR/) { | ||
split($i, pr_arr, " "); | ||
split(pr_arr[2], pr_ids, ";"); # セミコロンで複数のIDを区切る | ||
for (j=1; j<=length(pr_ids); j++) { | ||
gsub(/^ +| +$/, "", pr_ids[j]); # 余分な空白を削除 | ||
if (ac && pr_ids[j]) { | ||
print ac, pr_ids[j]; | ||
} | ||
} | ||
ac = ""; | ||
} | ||
} | ||
} |
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 |
---|---|---|
@@ -0,0 +1,7 @@ | ||
link: | ||
forward: TIO_000001 | ||
reverse: TIO_000001 | ||
file: sample.tsv | ||
update: | ||
frequency: Bimonthly | ||
method: awk -F '\t' -v db=PROSITE '$2 == db {print $1 "\t" $3}' $TOGOID_ROOT/input/interpro/interpro.tsv |
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,10 @@ | ||
IPR000020 PS01177 | ||
IPR000035 PS00516 | ||
IPR000049 PS01065 | ||
IPR000052 PS00418 | ||
IPR000056 PS01085 | ||
IPR000056 PS01086 | ||
IPR000059 PS01293 | ||
IPR000079 PS00355 | ||
IPR000083 PS01253 | ||
IPR000096 PS00992 |
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,7 @@ | ||
link: | ||
forward: TIO_000001 | ||
reverse: TIO_000001 | ||
file: sample.tsv | ||
update: | ||
frequency: Bimonthly | ||
method: awk -F '\t' -v db=SMART '$2 == db {print $1 "\t" $3}' $TOGOID_ROOT/input/interpro/interpro.tsv |
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,10 @@ | ||
IPR000001 SM00130 | ||
IPR000008 SM00239 | ||
IPR000010 SM00043 | ||
IPR000014 SM00091 | ||
IPR000020 SM00104 | ||
IPR000031 SM01001 | ||
IPR000033 SM00135 | ||
IPR000034 SM00281 | ||
IPR000043 SM00996 | ||
IPR000048 SM00015 |
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,7 @@ | ||
link: | ||
forward: TIO_000114 | ||
reverse: TIO_000115 | ||
file: sample.tsv | ||
update: | ||
frequency: Bimonthly | ||
method: awk -f $TOGOID_ROOT/bin/prosite_prorule.awk $TOGOID_ROOT/input/prosite/prosite.dat |
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,10 @@ | ||
PS00001 PRU00498 | ||
PS00005 PRU00672 | ||
PS00006 PRU00673 | ||
PS00016 PRU00293 | ||
PS00017 PRU00499 | ||
PS00018 PRU10142 | ||
PS00061 PRU10001 | ||
PS00064 PRU10002 | ||
PS00068 PRU10004 | ||
PS00069 PRU10005 |
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
Oops, something went wrong.