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 = 21436578

✎ 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
115634994 GT-AG 0 1.000000099473604e-05 195 rna-XM_034060427.1 21436578 1 97439196 97439390 Melopsittacus undulatus 13146 CAG|GTAAGCGCTG...TGCCGCTTCGCT/GGGGAGCCCACG...TGCAG|GAC 0 1 0.541
115634995 GT-AG 0 1.000000099473604e-05 1271 rna-XM_034060427.1 21436578 2 97439790 97441060 Melopsittacus undulatus 13146 AAG|GTAACGGTCC...GACACTTCAACA/TGACACTTCAAC...TACAG|GTC 0 1 9.533
115634996 GT-AG 0 1.000000099473604e-05 1660 rna-XM_034060427.1 21436578 3 97441188 97442847 Melopsittacus undulatus 13146 TGG|GTAAAGATGG...AATGTTTTGATC/AATGTTTTGATC...TGCAG|ATG 1 1 12.396
115634997 GT-AG 0 1.000000099473604e-05 248 rna-XM_034060427.1 21436578 4 97442962 97443209 Melopsittacus undulatus 13146 CTG|GTGAGCCATA...GAGGCCTCAGCA/GGAGGCCTCAGC...CACAG|AAT 1 1 14.965
115634998 GT-AG 0 1.000000099473604e-05 2023 rna-XM_034060427.1 21436578 5 97443342 97445364 Melopsittacus undulatus 13146 CAT|GTGAGTTAGA...CAGTTCCTATCT/TCCTATCTCAAA...GGCAG|ATG 1 1 17.94
115634999 GT-AG 0 0.0015946752474721 4179 rna-XM_034060427.1 21436578 6 97446266 97450444 Melopsittacus undulatus 13146 GCA|GTAGCACTGG...GTTTCCATGGCG/CCGGTTTCCATG...CACAG|GCC 2 1 38.247
115635000 GT-AG 0 1.000000099473604e-05 880 rna-XM_034060427.1 21436578 7 97450668 97451547 Melopsittacus undulatus 13146 TCA|GTAGGGCCCT...GGCCCCTTCCCC/CCAAACCCCACA...GATAG|CTG 0 1 43.272
115635001 GT-AG 0 1.000000099473604e-05 788 rna-XM_034060427.1 21436578 8 97452079 97452866 Melopsittacus undulatus 13146 CAG|GTAAGGGCGC...CCCACCGTGACA/CACCTGCACACC...TGCAG|GCG 0 1 55.24
115635002 GT-AG 0 1.050571317065434e-05 1236 rna-XM_034060427.1 21436578 9 97453260 97454495 Melopsittacus undulatus 13146 AAG|GTAACGGTGT...GCTGCTTGAACC/GGCTGCTTGAAC...TGCAG|GTG 0 1 64.097
115635003 GT-AG 0 1.230869506832541e-05 792 rna-XM_034060427.1 21436578 10 97454623 97455414 Melopsittacus undulatus 13146 TGG|GTAAATATGG...CCTCTCTTCATC/CCTCTCTTCATC...AACAG|ACT 1 1 66.96
115635004 GT-AG 0 1.000000099473604e-05 871 rna-XM_034060427.1 21436578 11 97455529 97456399 Melopsittacus undulatus 13146 CAG|GTGAGGCAAC...TTTGTCCTGACT/TTTGTCCTGACT...TGCAG|CTG 1 1 69.529
115635005 GT-AG 0 1.000000099473604e-05 1969 rna-XM_034060427.1 21436578 12 97456655 97458623 Melopsittacus undulatus 13146 CAG|GTGAGATGCT...ATAACCCTAACA/ATAACCCTAACA...CTCAG|AGG 1 1 75.276

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