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)

11 rows where transcript_id = 6439314

✎ View and edit SQL

This data as json, CSV (advanced)

Suggested facets: score, length, 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
33379610 GT-AG 0 0.0001115237275824 285 rna-XM_030632831.1 6439314 3 68418491 68418775 Cannabis sativa 3483 CAG|GTAGATCTTT...GTCTTCTTATCC/TGTCTTCTTATC...TTTAG|GAG 2 1 18.005
33379611 GT-AG 0 1.000000099473604e-05 98 rna-XM_030632831.1 6439314 6 68419514 68419611 Cannabis sativa 3483 GAG|GTAATTCTGT...ACTTCTGTAATG/GTAATGCTGATT...TCTAG|TAT 2 1 30.645
33379612 GT-AG 0 0.0019336434920416 175 rna-XM_030632831.1 6439314 9 68419765 68419939 Cannabis sativa 3483 CAG|GTTTCAATTT...TATTTTTTAAAA/TTTTTTTTCATT...AGTAG|GAA 0 1 33.242
33379613 GT-AG 0 2.786627209465745e-05 360 rna-XM_030632831.1 6439314 10 68420285 68420644 Cannabis sativa 3483 ACG|GTAAGCCCTG...AAGATTTTGAAA/AAGATTTTGAAA...TTCAG|ATT 0 1 39.175
33379614 GT-AG 0 7.132290027359728e-05 107 rna-XM_030632831.1 6439314 11 68421521 68421627 Cannabis sativa 3483 CAG|GTAATCCTTT...TTCCCCTTCCCA/CTTAGACTGAGT...CTTAG|AGT 0 1 54.239
33379615 GT-AG 0 0.4300833440712618 301 rna-XM_030632831.1 6439314 13 68421961 68422261 Cannabis sativa 3483 TGG|GTATACATAT...TTCACTTTAACT/GTTGCTTTTACT...TACAG|TTT 2 1 59.948
33379616 GT-AG 0 0.0001395657044112 98 rna-XM_030632831.1 6439314 16 68422383 68422480 Cannabis sativa 3483 GAG|GTATAGTGAT...AATCCGTTGACT/CATTGATTAATC...GACAG|GTG 0 1 61.978
33379617 GT-AG 0 1.000000099473604e-05 385 rna-XM_030632831.1 6439314 18 68422645 68423029 Cannabis sativa 3483 CAG|GTAATGGGAA...CATGTTATGATA/TGTTGTGTCATT...GAAAG|GCA 0 1 64.764
33379618 GT-AG 0 0.00026327573754 471 rna-XM_030632831.1 6439314 20 68424499 68424969 Cannabis sativa 3483 CAG|GTATAAATTT...TTTCTTTTATTG/CTTTCTTTTATT...TGAAG|GTT 0 1 89.991
33379619 GT-AG 0 0.000875854899469 468 rna-XM_030632831.1 6439314 21 68425237 68425704 Cannabis sativa 3483 GCA|GTAAGTTGGA...CTTCTCTTGATT/CTTCTCTTGATT...TGCAG|TCA 0 1 94.583
33396260 GT-AG 0 9.397732494284196e-05 185 rna-XM_030632831.1 6439314 1 68417590 68417774 Cannabis sativa 3483 CAG|GTAATTTTAA...CATTCTTTAATG/GATTTTTTCATT...ACTAG|GTT   0 7.24

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