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

✎ 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
33379859 GT-AG 0 1.000000099473604e-05 298 rna-XM_030636220.1 6439328 1 100905510 100905807 Cannabis sativa 3483 CAG|GTCAGTTTCC...TAATTTATGATT/TTGATTGTAATT...TACAG|CCA 1 1 0.264
33379860 GT-AG 0 1.000000099473604e-05 408 rna-XM_030636220.1 6439328 2 100906398 100906805 Cannabis sativa 3483 CAG|GTTTTGCTTC...AGTTTATTAATA/AGTTTATTAATA...TGTAG|GGG 0 1 12.249
33379861 GT-AG 0 0.0027964640600435 314 rna-XM_030636220.1 6439328 3 100906939 100907252 Cannabis sativa 3483 CAG|GTAACTTAAG...CTGTTCTTATTA/AACTTATTTATA...AACAG|GAA 1 1 14.95
33379862 GT-AG 0 0.0065868706859458 261 rna-XM_030636220.1 6439328 4 100908470 100908730 Cannabis sativa 3483 AAT|GTACGTTTGT...TTTCTTTTGAAA/TTTCTTTTGAAA...TGCAG|GTA 0 1 39.671
33379863 GT-AG 0 0.0005831941871542 149 rna-XM_030636220.1 6439328 5 100908839 100908987 Cannabis sativa 3483 TGG|GTACTTAACC...CTCTCTTTAATA/CTCTCTTTAATA...CACAG|GTT 0 1 41.865
33379864 GT-AG 0 1.000000099473604e-05 435 rna-XM_030636220.1 6439328 6 100909159 100909593 Cannabis sativa 3483 GAG|GTCAGTGGTG...GGTCTCTTATCA/TTGTTTATAATT...TTCAG|GGT 0 1 45.338
33379865 GT-AG 0 1.000000099473604e-05 259 rna-XM_030636220.1 6439328 7 100909837 100910095 Cannabis sativa 3483 GAG|GTAGAATGCT...TAGTTCTTGTTC/TTCTTGTTCAAA...TACAG|ATA 0 1 50.274
33379866 GT-AG 0 0.0003711679665342 214 rna-XM_030636220.1 6439328 8 100910540 100910753 Cannabis sativa 3483 TTG|GTATGTGACT...TTGGTCTTAAAA/TTTGGTCTTAAA...TGCAG|GAA 0 1 59.293
33379867 GT-AG 0 0.0135296163518738 96 rna-XM_030636220.1 6439328 9 100911591 100911686 Cannabis sativa 3483 TCG|GTATTTTATC...TTGTTCTAAAAT/TTTGTTCTAAAA...TCTAG|GTT 0 1 76.295
33379868 GT-AG 0 0.0016899805617162 237 rna-XM_030636220.1 6439328 10 100911885 100912121 Cannabis sativa 3483 ACG|GTATGTAGAC...CTGTCTTTGACT/CTGTCTTTGACT...TGCAG|GTG 0 1 80.317
33379869 GT-AG 0 0.0001332580640677 87 rna-XM_030636220.1 6439328 11 100912581 100912667 Cannabis sativa 3483 AAG|GTAATCTTAT...ACCTCATTGATA/TTTTTGGTCACC...TTCAG|GTT 0 1 89.64
33379870 GT-AG 0 6.255148519399664e-05 107 rna-XM_030636220.1 6439328 12 100912899 100913005 Cannabis sativa 3483 CAG|GTACTTAAAG...TTAATCTTAACT/TAAGCTCTCATT...AACAG|GAG 0 1 94.333

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