home / WtMTA

introns

Data license: ODbL · Data source: Larue & Roy, 2023 · About: Minor Intron Database (WtMTA)

id
INTEGER (primary key), globally unique identifier for each intron
dinucleotide_pair
TEXT, terminal dinucleotide sequences of the intron
is_minor
INTEGER, indicates if the intron is a minor intron (1) or not (0)
score
REAL, score representing the probability (0-100%) of the intron being minor
length
INTEGER, length of the intron in base pairs
transcript_id
INTEGER (foreign key referencing transcripts(id)), parent transcript
ordinal_index
INTEGER, ordinal position of the intron within the transcript (e.g., 3 for the third intron)
start
INTEGER, start position of the intron in the genome
end
INTEGER, end position of the intron in the genome
taxonomy_id
INTEGER (foreign key referencing genomes(taxonomy_id)), NCBI taxonomy identifier for species
scored_motifs
TEXT, motifs scored for the intron
phase
INTEGER, phase of the intron in coding sequence (0, 1, or 2 or null for introns outside of coding sequence)
in_cds
INTEGER, indicates if the intron is within the coding sequence (1) or not (0; e.g., UTR introns)
relative_position
REAL, relative position of the intron within the transcript (as a percentage of coding length)

11 rows where transcript_id = 34796210

✎ View and edit SQL

This data as json, CSV (advanced)

Suggested facets: score, length, phase, in_cds

id ▼ dinucleotide_pair is_minor score length transcript_id ordinal_index start end taxonomy_id scored_motifs phase in_cds relative_position
196000742 GT-AG 0 1.000000099473604e-05 123 rna-XM_043863073.1 34796210 2 29437396 29437518 Telopea speciosissima 54955 CAG|GTTGATTATC...TATTCCTCACTT/ATATTCCTCACT...TGCAG|AAT 0 1 23.041
196000743 GT-AG 0 1.000000099473604e-05 101 rna-XM_043863073.1 34796210 3 29437591 29437691 Telopea speciosissima 54955 AAG|GTTGGGTTTC...TTTCGTGTAGCT/GTGTAGCTAATA...GACAG|GTT 0 1 24.558
196000744 GT-AG 0 0.0013570708543681 150 rna-XM_043863073.1 34796210 4 29437770 29437919 Telopea speciosissima 54955 GAG|GTCTTTCTTT...AAGTCTTTAGCT/CAAGTCTTTAGC...TCCAG|GAA 0 1 26.201
196000745 GT-AG 0 0.0001908176547668 110 rna-XM_043863073.1 34796210 5 29438448 29438557 Telopea speciosissima 54955 GAG|GTATGATAGG...GCTTCTTTATTT/TTTTTTTTCAGG...TGTAG|GTT 0 1 37.321
196000746 GT-AG 0 1.000000099473604e-05 352 rna-XM_043863073.1 34796210 6 29438771 29439122 Telopea speciosissima 54955 TGG|GTAAGATCAA...TTAATATTAATT/TTAATATTAATT...AACAG|CAT 0 1 41.807
196000747 GT-AG 0 1.000000099473604e-05 23260 rna-XM_043863073.1 34796210 7 29439285 29462544 Telopea speciosissima 54955 CTG|GTCAGTAATA...CTCTCTTTGTCC/GTCTGTCTAATT...TGCAG|GTC 0 1 45.219
196000748 GT-AG 0 0.0002943906288218 101 rna-XM_043863073.1 34796210 8 29462914 29463014 Telopea speciosissima 54955 AAG|GTAAGCTCTT...TCGTCTTTATTT/GTCGTCTTTATT...CATAG|ACA 0 1 52.991
196000749 GT-AG 0 0.0062869552674542 105 rna-XM_043863073.1 34796210 9 29464612 29464716 Telopea speciosissima 54955 AAG|GTATGTTTTT...TATTTCTTTATG/TATTTCTTTATG...TGCAG|GAT 1 1 86.626
196000750 GT-AG 0 1.000000099473604e-05 1677 rna-XM_043863073.1 34796210 10 29464821 29466497 Telopea speciosissima 54955 ATG|GTAATACCAC...AAATTTTTGGCT/ATAAATCTAACA...TTCAG|GTC 0 1 88.816
196000751 GT-AG 0 1.000000099473604e-05 603 rna-XM_043863073.1 34796210 11 29466696 29467298 Telopea speciosissima 54955 CAG|GTAGTACCTC...GATTCATTACAT/AATTGATTCATT...TACAG|GGT 0 1 92.987
196014319 GT-AG 0 1.000000099473604e-05 125 rna-XM_043863073.1 34796210 1 29436969 29437093 Telopea speciosissima 54955 AAG|GTTGATGAAT...TTCCCCTTATGG/GTTGGATTGATA...TGCAG|TAT   0 16.786

Advanced export

JSON shape: default, array, newline-delimited, object

CSV options:

CREATE TABLE "introns" (
"id" INTEGER,
  "dinucleotide_pair" TEXT,
  "is_minor" INTEGER,
  "score" REAL,
  "length" INTEGER,
  "transcript_id" INTEGER,
  "ordinal_index" INTEGER,
  "start" INTEGER,
  "end" INTEGER,
  "taxonomy_id" INTEGER,
  "scored_motifs" TEXT,
  "phase" INTEGER,
  "in_cds" INTEGER,
  "relative_position" REAL
  ,PRIMARY KEY ([id]),
   FOREIGN KEY([transcript_id]) REFERENCES [transcripts]([id]),
   FOREIGN KEY([taxonomy_id]) REFERENCES [genomes]([taxonomy_id])
);
CREATE INDEX [idx_introns_transcript_id]
    ON [introns] ([transcript_id]);
CREATE INDEX [idx_introns_taxonomy_id]
    ON [introns] ([taxonomy_id]);
CREATE INDEX [idx_introns_phase]
    ON [introns] ([phase]);
CREATE INDEX [idx_introns_is_minor]
    ON [introns] ([is_minor]);
CREATE INDEX [idx_introns_dinucleotide_pair]
    ON [introns] ([dinucleotide_pair]);
CREATE INDEX [idx_introns_score]
    ON [introns] ([score]);
CREATE INDEX [idx_introns_in_cds]
    ON [introns] ([in_cds]);
Powered by Datasette · Queries took 28.23ms · Data license: ODbL · Data source: Larue & Roy, 2023 · About: Minor Intron Database (WtMTA)