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

✎ 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
28028240 GT-AG 0 1.000000099473604e-05 2809 rna-XM_010143103.1 5460247 1 52698 55506 Buceros rhinoceros 175835 GTG|GTAAGTAAAT...CCCATCTTAATA/ATCTTAATAATT...ATCAG|AAT 1 1 3.074
28028241 GT-AG 0 1.000000099473604e-05 624 rna-XM_010143103.1 5460247 2 51911 52534 Buceros rhinoceros 175835 AAG|GTAAAGTGTT...TGGATTTTAAAA/AGTCTGTTCATC...CACAG|GTT 2 1 11.712
28028242 GT-AG 0 1.000000099473604e-05 1215 rna-XM_010143103.1 5460247 3 50589 51803 Buceros rhinoceros 175835 GTG|GTAAGATATG...GTTTTCAGAACT/CCTGTTTTCAGA...CACAG|CTT 1 1 17.382
28028243 GT-AG 0 0.0001361168993544 572 rna-XM_010143103.1 5460247 4 49857 50428 Buceros rhinoceros 175835 TCG|GTAAATATGG...CTTTCTTTATTC/ACTTTCTTTATT...CTCAG|TAA 2 1 25.861
28028244 GT-AG 0 0.0049867654708289 3501 rna-XM_010143103.1 5460247 5 46246 49746 Buceros rhinoceros 175835 TAG|GTAACTATTT...AGAATTTTGATG/AGAATTTTGATG...TACAG|ATT 1 1 31.691
28028245 GT-AG 0 1.000000099473604e-05 775 rna-XM_010143103.1 5460247 6 45311 46085 Buceros rhinoceros 175835 AAG|GTGAATATAA...CCAGTTTTAGCA/TTATGGCTAAAA...TTAAG|GAA 2 1 40.17
28028246 GT-AG 0 2.2580984529754703e-05 80 rna-XM_010143103.1 5460247 7 45121 45200 Buceros rhinoceros 175835 CTG|GTAAACAATA...CTGATTTTGAAA/AATGCACTCATT...TACAG|CCT 1 1 45.999
28028247 GT-AG 0 1.000000099473604e-05 129 rna-XM_010143103.1 5460247 8 44832 44960 Buceros rhinoceros 175835 AAG|GTAAGACATA...TTTGCATTAATT/CATTAATTTATT...GGCAG|AAA 2 1 54.478
28028248 GT-AG 0 1.000000099473604e-05 405 rna-XM_010143103.1 5460247 9 44311 44715 Buceros rhinoceros 175835 CGG|GTAAGTAAAA...TTATCTTTAAGC/TTTTAAATTATT...TGTAG|TGT 1 1 60.625
28028249 GT-AG 0 1.000000099473604e-05 1091 rna-XM_010143103.1 5460247 10 43045 44135 Buceros rhinoceros 175835 GAG|GTGAAGCCTT...TTTGTCTTTTCC/CCCAGACTGACT...CTCAG|TCT 2 1 69.899
28028250 GT-AG 0 0.0005269826434523 325 rna-XM_010143103.1 5460247 11 42544 42868 Buceros rhinoceros 175835 CTG|GTATGTAGTG...CTATTTTTACTA/TTTTTATTCACA...TTTAG|ATC 1 1 79.226
28028251 GT-AG 0 1.000000099473604e-05 1355 rna-XM_010143103.1 5460247 12 41093 42447 Buceros rhinoceros 175835 AAG|GTACAGATAA...ATTTTGTTAGAA/TATTTGTTCATA...CACAG|GTC 1 1 84.314
28028252 GT-AG 0 1.000000099473604e-05 1280 rna-XM_010143103.1 5460247 13 39673 40952 Buceros rhinoceros 175835 AAG|GTAATGAAAA...TGTTCCTTGCTG/CTTTTTCTGAGA...CACAG|GGA 0 1 91.733

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