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

✎ View and edit SQL

This data as json, CSV (advanced)

Suggested facets: is_minor, 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
55535447 GT-AG 0 5.715574607426805e-05 498 rna-XM_023082233.1 10113224 2 10269822 10270319 Cucurbita moschata 3662 CGG|GTAATTTTAC...AGATCCTAAACA/TATTTATTGAAT...AATAG|GTC 2 1 9.65
55535448 GT-AG 0 2.6519407808138686e-05 92 rna-XM_023082233.1 10113224 3 10269648 10269739 Cucurbita moschata 3662 AAG|GTAATCCGAT...TCTTCCTTATAT/TAGATTTTTATC...TGCAG|AAT 0 1 12.517
55535449 GT-AG 0 1.000000099473604e-05 415 rna-XM_023082233.1 10113224 4 10269131 10269545 Cucurbita moschata 3662 ATT|GTAAGAACGT...AATTCATTATTC/ATCTAATTCATT...TACAG|ACC 0 1 16.084
55535450 GT-AG 1 98.04910852621038 124 rna-XM_023082233.1 10113224 5 10268381 10268504 Cucurbita moschata 3662 AGC|GTATCCATCC...TACTCCTTAACT/AACTGTCTGATC...TTAAG|TTC 2 1 37.972
55535451 GT-AG 0 1.2681882809038168e-05 100 rna-XM_023082233.1 10113224 6 10268184 10268283 Cucurbita moschata 3662 GAA|GTAAGATTTG...GATCTCTGGACA/TGTTTGGTGATC...TGCAG|GCA 0 1 41.364
55535452 GT-AG 0 1.000000099473604e-05 277 rna-XM_023082233.1 10113224 7 10267732 10268008 Cucurbita moschata 3662 CAG|GTAAGTATTC...TGTTTCTTTTCA/TTTCTTTTCATT...CACAG|TGA 1 1 47.483
55535453 GT-AG 0 0.0001609531834896 81 rna-XM_023082233.1 10113224 8 10267574 10267654 Cucurbita moschata 3662 CAG|GTAGCTGGCT...ATTTATTTGATT/ATTTATTTGATT...AACAG|GAT 0 1 50.175
55535454 GT-AG 0 6.707751478348244e-05 265 rna-XM_023082233.1 10113224 9 10266883 10267147 Cucurbita moschata 3662 GAA|GTATGTGATA...CTGATCTGACAA/ACTGATCTGACA...AACAG|GAA 0 1 65.07
55535455 GT-AG 0 1.000000099473604e-05 274 rna-XM_023082233.1 10113224 10 10266559 10266832 Cucurbita moschata 3662 TCG|GTAATTGTTT...ATCGTTTCAACT/TTTCAACTGATA...ACCAG|GGG 2 1 66.818
55535456 GT-AG 0 1.9128800561129643e-05 106 rna-XM_023082233.1 10113224 11 10266339 10266444 Cucurbita moschata 3662 CAT|GTAAGTACTT...TGTACTTTATTT/CTTTATTTTATA...CTCAG|GAG 2 1 70.804
55535457 GT-AG 0 5.148984707476166e-05 438 rna-XM_023082233.1 10113224 12 10265833 10266270 Cucurbita moschata 3662 AGG|GTATGGCTGT...TCGTTCTAAATG/TATGTTTTCATA...TCCAG|AAT 1 1 73.182
55540955 GT-AG 0 0.0002910570281059 321 rna-XM_023082233.1 10113224 1 10270448 10270768 Cucurbita moschata 3662 AAG|GTACCTGAAA...TGAATTTTGGTC/TTCCGCGTCATG...TTCAG|AAT   0 5.699

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