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

✎ 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
119314321 GT-AG 0 1.000000099473604e-05 118 Misin01G377800.1.v7.1 22023862 1 121905596 121905713 Miscanthus sinensis 62337 CAG|GTGCGTGCGT...GCGTCCGTCGTT/ATCTGGCTGATA...TGCAG|TAC 0 1 2.287
119314322 GT-AG 0 1.000000099473604e-05 84 Misin01G377800.1.v7.1 22023862 2 121905804 121905887 Miscanthus sinensis 62337 TAC|GTGAGTTTGG...TCTGATTTAATT/TCTGATTTAATT...CGCAG|GAT 0 1 4.366
119314323 GT-AG 0 1.000000099473604e-05 98 Misin01G377800.1.v7.1 22023862 3 121905993 121906090 Miscanthus sinensis 62337 AGG|GTCAGCTTTT...AGTTTTGTGACC/ATTGTGTTCAGC...TCCAG|GTT 0 1 6.791
119314324 GT-AG 0 0.0007560235061601 486 Misin01G377800.1.v7.1 22023862 4 121906160 121906645 Miscanthus sinensis 62337 ACG|GTTACCAAAA...CGCCCTTTAATG/CGCCCTTTAATG...TGCAG|AAA 0 1 8.385
119314325 GT-AG 0 3.9047746950830575e-05 1016 Misin01G377800.1.v7.1 22023862 5 121906731 121907746 Miscanthus sinensis 62337 AAG|GTGTGTTGTT...CATACTTTGATT/TTGAATTTCATA...GCTAG|GTG 1 1 10.349
119314326 GT-AG 0 0.0021223654212945 91 Misin01G377800.1.v7.1 22023862 6 121907814 121907904 Miscanthus sinensis 62337 CTG|GTATTTCCAA...TATGTTTTGATT/TATGTTTTGATT...TTCAG|CTT 2 1 11.897
119314327 GT-AG 0 1.000000099473604e-05 131 Misin01G377800.1.v7.1 22023862 7 121907950 121908080 Miscanthus sinensis 62337 AAG|GTAAGTATAA...AATGCATTGAAA/TGAAAACTAATT...CACAG|TGG 2 1 12.936
119314328 GT-AG 0 1.000000099473604e-05 81 Misin01G377800.1.v7.1 22023862 8 121908180 121908260 Miscanthus sinensis 62337 CAG|GTGCGTTTTT...AAACTTTTACCA/TGTCGATTTATC...CACAG|TGG 2 1 15.223
119314329 GT-AG 0 0.0003704183278751 54 Misin01G377800.1.v7.1 22023862 9 121909363 121909416 Miscanthus sinensis 62337 AAT|GTTTAATCTG...ATGCTGTTAATT/ATGCTGTTAATT...GAAAG|CAA 0 1 40.679
119314330 GT-AG 0 1.000000099473604e-05 51 Misin01G377800.1.v7.1 22023862 10 121910660 121910710 Miscanthus sinensis 62337 TTG|GTAGTGCCAT...TTTTTCATAAAA/AGCTTTTTCATA...CGAAG|GGA 1 1 69.392
119314331 GT-AG 0 1.000000099473604e-05 267 Misin01G377800.1.v7.1 22023862 11 121911237 121911503 Miscanthus sinensis 62337 CAG|GTTAGGACTA...GTTGTCTTTTCA/TGTCTTTTCACA...ATTAG|GTG 2 1 81.543
119314332 GT-AG 0 1.000000099473604e-05 166 Misin01G377800.1.v7.1 22023862 12 121911721 121911886 Miscanthus sinensis 62337 CTG|GTAATAATTC...ATTTTCTAAATC/CATTTTCTAAAT...GGCAG|GAC 0 1 86.556

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