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)

14 rows where transcript_id = 10113186

✎ View and edit SQL

This data as json, CSV (advanced)

Suggested facets: score, phase

id ▼ dinucleotide_pair is_minor score length transcript_id ordinal_index start end taxonomy_id scored_motifs phase in_cds relative_position
55535066 GT-AG 0 0.0001026232214306 84 rna-XM_023077232.1 10113186 1 7902910 7902993 Cucurbita moschata 3662 AAG|GTACGCCTAT...TTTTTCATGATG/TTTTTTTTCATG...CTTAG|GAT 0 1 8.913
55535067 GT-AG 0 0.0001620180476617 121 rna-XM_023077232.1 10113186 2 7902726 7902846 Cucurbita moschata 3662 AAG|GTATAATGAA...TCTTCTTTGGCG/ATGTGGTGAATT...AATAG|GTT 0 1 10.784
55535068 GT-AG 0 1.000000099473604e-05 189 rna-XM_023077232.1 10113186 3 7902402 7902590 Cucurbita moschata 3662 CAG|GTACGGTGGC...GCAGCTTTGATT/TTGATTCTCAAG...TGTAG|GAA 0 1 14.795
55535069 GT-AG 0 0.0008831852520973 248 rna-XM_023077232.1 10113186 4 7902070 7902317 Cucurbita moschata 3662 CAG|GTAACTGTTG...AATTCTTTCATA/AATTCTTTCATA...AACAG|ACG 0 1 17.291
55535070 GT-AG 0 9.395851254470832e-05 280 rna-XM_023077232.1 10113186 5 7901664 7901943 Cucurbita moschata 3662 AAA|GTAGGTATCC...CGACTCTTATTA/ACGACTCTTATT...CTCAG|GAA 0 1 21.034
55535071 GT-AG 0 0.0025621910246443 107 rna-XM_023077232.1 10113186 6 7901497 7901603 Cucurbita moschata 3662 GAG|GTACTCATTG...CTTTTTTGGATT/TTTGGATTGATT...TCCAG|ATA 0 1 22.816
55535072 GT-AG 0 1.000000099473604e-05 88 rna-XM_023077232.1 10113186 7 7901355 7901442 Cucurbita moschata 3662 AAG|GTTAGAACGT...ATCTTCTGAGCA/CATCTTCTGAGC...ACCAG|ATA 0 1 24.421
55535073 GT-AG 0 1.000000099473604e-05 105 rna-XM_023077232.1 10113186 8 7901157 7901261 Cucurbita moschata 3662 AAG|GTTGATAATC...TTGTTCTTGACC/CATTTGCTTACT...TACAG|GGC 0 1 27.184
55535074 GT-AG 0 0.0015163794012098 169 rna-XM_023077232.1 10113186 9 7900892 7901060 Cucurbita moschata 3662 AAG|GTACCTTGAT...TAATATATAATC/TATATAATCATC...TGCAG|GAA 0 1 30.036
55535075 GT-AG 0 1.000000099473604e-05 113 rna-XM_023077232.1 10113186 10 7900630 7900742 Cucurbita moschata 3662 CGG|GTATGGGAAA...ATTTCCCTGATT/ATTTCCCTGATT...TGCAG|GCA 2 1 34.462
55535076 GT-AG 0 1.529703199407193e-05 727 rna-XM_023077232.1 10113186 11 7899753 7900479 Cucurbita moschata 3662 TAG|GTACTACATA...ATCATCTTGAAA/CGATTATTTAAA...TGCAG|CTA 2 1 38.919
55535077 GT-AG 0 1.000000099473604e-05 104 rna-XM_023077232.1 10113186 12 7899519 7899622 Cucurbita moschata 3662 AAG|GTATTAAGTT...TATGTTTTGGCC/AGTTTGCTAATT...TGCAG|GAA 0 1 42.781
55535078 GT-AG 0 0.0001514061004097 842 rna-XM_023077232.1 10113186 13 7897756 7898597 Cucurbita moschata 3662 AAG|GTACACACTT...CGATCCTCAGTA/GTACTTCTGACA...AGCAG|GAG 0 1 70.143
55535079 GT-AG 0 0.0008832264221924 92 rna-XM_023077232.1 10113186 14 7896911 7897002 Cucurbita moschata 3662 GAG|GTAACTGTTC...TTTCTTTTAGAG/ATTGTGTTTATA...CATAG|GAA 0 1 92.513

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 43.595ms · Data license: ODbL · Data source: Larue & Roy, 2023 · About: Minor Intron Database (WtMTA)