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

✎ 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
77699582 GT-AG 0 1.000000099473604e-05 8155 rna-XM_013301119.2 14514645 2 4006432 4014586 Falco peregrinus 8954 TAG|GTGAGACTAA...CAGTCTTCAACT/ACAGTCTTCAAC...TGTAG|GCA 1 1 31.452
77699583 GT-AG 0 1.000000099473604e-05 1043 rna-XM_013301119.2 14514645 3 4014782 4015824 Falco peregrinus 8954 AAG|GTATTAAAAA...TGTGCTTTTTCT/TATAAACTGAAT...CCCAG|GAA 1 1 38.462
77699584 GT-AG 0 1.000000099473604e-05 5816 rna-XM_013301119.2 14514645 4 4015980 4021795 Falco peregrinus 8954 CAG|GTCTGTCCTT...AAATTCTTACAA/TAAATTCTTACA...CATAG|GTA 0 1 44.033
77699585 GT-AG 0 1.000000099473604e-05 6108 rna-XM_013301119.2 14514645 5 4021879 4027986 Falco peregrinus 8954 CAG|GTAATTGTGT...TTTGCCTCATCT/TTTTGCCTCATC...TGCAG|AAG 2 1 47.017
77699586 GT-AG 0 1.000000099473604e-05 1354 rna-XM_013301119.2 14514645 6 4028329 4029682 Falco peregrinus 8954 AAA|GTGAGTGGAT...GTGATTTTAATA/GTGATTTTAATA...TGCAG|GTA 2 1 59.31
77699587 GT-AG 0 1.000000099473604e-05 782 rna-XM_013301119.2 14514645 7 4029741 4030522 Falco peregrinus 8954 CAG|GTTAGAATAA...CATGTTTTAAGC/CATGTTTTAAGC...TGCAG|TTA 0 1 61.395
77699588 GT-AG 0 1.558063402357205e-05 1034 rna-XM_013301119.2 14514645 8 4030667 4031700 Falco peregrinus 8954 GAG|GTTTGTGTTT...AATTCCTAAATG/ATGCAATTAACT...TCTAG|GTT 0 1 66.571
77699589 GT-AG 0 1.000000099473604e-05 1528 rna-XM_013301119.2 14514645 9 4031848 4033375 Falco peregrinus 8954 GAG|GTGAGTCCTA...TTGTTCTTTTCA/GTTCTTTTCATC...TGTAG|AAA 0 1 71.855
77699590 GT-AG 0 1.000000099473604e-05 1867 rna-XM_013301119.2 14514645 10 4033536 4035402 Falco peregrinus 8954 TGG|GTAAGATGCA...ATTGCCTTGTTT/TCTGTACTGAGC...AACAG|ACA 1 1 77.606
77699591 GT-AG 0 1.000000099473604e-05 911 rna-XM_013301119.2 14514645 11 4035837 4036747 Falco peregrinus 8954 AAG|GTAGGTTGTT...CATTCCTTTCTT/GCTGGATTCATG...TTTAG|GTT 0 1 93.206
77700323 GT-AG 0 1.000000099473604e-05 2579 rna-XM_013301119.2 14514645 1 4003151 4005729 Falco peregrinus 8954 AGG|GTAAGTAGGA...TTGTTTTTTTCC/ATTATTTGTATG...ATCAG|ATC   0 6.83

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