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)

12 rows where transcript_id = 38062747

✎ View and edit SQL

This data as json, CSV (advanced)

Suggested facets: score, 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
210095677 GT-AG 0 1.000000099473604e-05 1489 rna-XM_034827213.1 38062747 1 1859590 1861078 Vitis riparia 96939 AAG|GTTTGGTTTA...TAGTTCTGAGAT/TGGGTTTTTATT...TTCAG|ATT 0 1 1.993
210095678 GT-AG 0 1.6641174576503175e-05 1534 rna-XM_034827213.1 38062747 2 1861156 1862689 Vitis riparia 96939 AAT|GTAAGTGTTT...GTTTTCTTTCCT/TGGCTTTTCATC...CACAG|AGC 2 1 3.375
210095679 GT-AG 0 2.270078896153384e-05 86 rna-XM_034827213.1 38062747 3 1864826 1864911 Vitis riparia 96939 AAG|GTCTGTATCA...GCTGTTTTACCT/TCTTTGTTCATT...TACAG|ACT 2 1 41.724
210095680 GT-AG 0 1.000000099473604e-05 3084 rna-XM_034827213.1 38062747 4 1865438 1868521 Vitis riparia 96939 GAG|GTAGGTGACA...CAATTCTTAAAT/CAATTCTTAAAT...TGCAG|GTT 0 1 51.167
210095681 GT-AG 0 0.0001251813946003 362 rna-XM_034827213.1 38062747 5 1868631 1868992 Vitis riparia 96939 AAG|GTACATATGC...CTCTCATTAATT/TGTTCTCTCATT...CTCAG|GAA 1 1 53.124
210095682 GT-AG 0 1.000000099473604e-05 72 rna-XM_034827213.1 38062747 6 1869106 1869177 Vitis riparia 96939 AAG|GTAATTGTGC...ACATTTTTGCTC/TTTTTGCTCAAA...ACCAG|GTT 0 1 55.153
210095683 GT-AG 0 1.000000099473604e-05 1611 rna-XM_034827213.1 38062747 7 1869366 1870976 Vitis riparia 96939 AAG|GTCTGAAATT...TTTTTCTTTGCT/AACTTTCTGATA...TTCAG|CAA 2 1 58.528
210095684 GT-AG 0 1.000000099473604e-05 84 rna-XM_034827213.1 38062747 8 1872001 1872084 Vitis riparia 96939 AGT|GTAAGACTCT...ACTTCCTTCTTT/TCTTTTTTCATT...TACAG|GGA 0 1 76.912
210095685 GT-AG 0 0.0003777562739908 1571 rna-XM_034827213.1 38062747 9 1872590 1874160 Vitis riparia 96939 AAG|GTACACATTT...ACATTTCTAACA/ACATTTCTAACA...GGTAG|GTT 1 1 85.978
210095686 GT-AG 0 0.0008365574404945 91 rna-XM_034827213.1 38062747 10 1874254 1874344 Vitis riparia 96939 CAG|GTGACCTTGC...AATGACTTAATG/GAATGACTTAAT...CTCAG|TTC 1 1 87.648
210102067 GT-AG 0 1.000000099473604e-05 446 rna-XM_034827213.1 38062747 11 1874442 1874887 Vitis riparia 96939 TCA|GTGAGTTTCT...TAGTGCGTGACT/TTGTCTCTAAGG...GTCAG|TGC   0 89.39
210102068 GT-AG 0 1.000000099473604e-05 711 rna-XM_034827213.1 38062747 12 1875095 1875805 Vitis riparia 96939 CCG|GTTAGTACAT...GGTTTCTGAGTG/TGGTTTCTGAGT...TACAG|GTT   0 93.106

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