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)

13 rows where transcript_id = 7347023

✎ 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
38394139 GT-AG 0 6.119058865763974e-05 710 Ceric.01G051000.1.v2.1 7347023 1 109602575 109603284 Ceratopteris richardii 49495 CAG|GTATGATTAG...TATTTTTTGGTT/TTTTGGTTTATG...TGTAG|GTT 1 1 26.701
38394140 GT-AG 0 0.0687338255882577 101 Ceric.01G051000.1.v2.1 7347023 2 109602304 109602404 Ceratopteris richardii 49495 CGG|GTATCAATTA...TTCTTCTGATTC/CTTCTTCTGATT...AACAG|AAA 0 1 34.07
38394141 GT-AG 0 0.0042761733902848 12589 Ceric.01G051000.1.v2.1 7347023 3 109589481 109602069 Ceratopteris richardii 49495 AAG|GTAACTGCTG...TGTTCCTTAGCT/TTGTTCCTTAGC...GTCAG|GAA 0 1 44.213
38394142 GT-AG 0 0.0038802082461193 462 Ceric.01G051000.1.v2.1 7347023 4 109588907 109589368 Ceratopteris richardii 49495 GAT|GTAAGTTTCT...TCCTTCTTAAAT/AAATGAATCACT...TATAG|ATA 1 1 49.068
38394143 GT-AG 0 1.000000099473604e-05 307 Ceric.01G051000.1.v2.1 7347023 5 109588429 109588735 Ceratopteris richardii 49495 ATG|GTGAGCAGTG...TTTATCTGAAAT/ATTTATCTGAAA...TGCAG|GAC 1 1 56.48
38394144 GT-AG 0 0.000809058247268 146 Ceric.01G051000.1.v2.1 7347023 6 109588219 109588364 Ceratopteris richardii 49495 GAC|GTAAGCTGAA...ATATTTTTATCT/TATATTTTTATC...TATAG|ACC 2 1 59.254
38394145 GT-AG 0 0.001878511828571 80 Ceric.01G051000.1.v2.1 7347023 7 109588081 109588160 Ceratopteris richardii 49495 AGA|GTAACATGGA...TATTTCTGGAAA/CAAAAATTGATA...TGCAG|ATG 0 1 61.769
38394146 GT-AG 0 1.000000099473604e-05 9636 Ceric.01G051000.1.v2.1 7347023 8 109578267 109587902 Ceratopteris richardii 49495 AAG|GTTTTTGCTG...TATTTTTTCTCG/ACTAAACTAATG...TGCAG|ACT 1 1 69.484
38394147 GT-AG 0 2.1101185666051225e-05 606 Ceric.01G051000.1.v2.1 7347023 9 109577530 109578135 Ceratopteris richardii 49495 CTT|GTAAGTATGT...ACTTTCTTGCAC/ATTGTGTTGAAC...TGCAG|CCG 0 1 75.163
38394148 GT-AG 0 1.000000099473604e-05 141 Ceric.01G051000.1.v2.1 7347023 10 109577286 109577426 Ceratopteris richardii 49495 ATT|GTAAGTAAGA...GTTTGCTTGATG/ATTTGACTCATT...TGCAG|TAG 1 1 79.627
38394149 GT-AG 0 0.0107824236283652 513 Ceric.01G051000.1.v2.1 7347023 11 109576696 109577208 Ceratopteris richardii 49495 GTG|GTATGTATTA...GTTTTTTTATTA/GGTTTTTTTATT...AGCAG|GTC 0 1 82.965
38394150 GT-AG 0 1.000000099473604e-05 126 Ceric.01G051000.1.v2.1 7347023 12 109576522 109576647 Ceratopteris richardii 49495 GGA|GTAAGATTAG...CACATTGTGACT/TCAATTATGATT...AGCAG|TGC 0 1 85.046
38394151 GT-AG 0 1.000000099473604e-05 117 Ceric.01G051000.1.v2.1 7347023 13 109576255 109576371 Ceratopteris richardii 49495 GAG|GTCCTTATAG...ATATTCTAGATC/TTACTTTTCATT...AACAG|GTA 0 1 91.547

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