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

✎ 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
161699804 GT-AG 0 9.49878301111754e-05 1493 rna-XM_043586813.1 29006300 1 136851300 136852792 Prionailurus bengalensis 37029 CAG|GTAATTTTTT...GTGTCCTTCGCA/GGAGATCTAAAT...TGTAG|GTA 1 1 13.505
161699805 GT-AG 0 1.000000099473604e-05 1336 rna-XM_043586813.1 29006300 2 136852893 136854228 Prionailurus bengalensis 37029 CAC|GTAAGTAGAT...TTATTTTTACTT/TTTATTTTTACT...TACAG|ATG 2 1 15.882
161699806 GT-AG 0 1.9575373590443508e-05 908 rna-XM_043586813.1 29006300 3 136854311 136855218 Prionailurus bengalensis 37029 ACG|GTAATTTATA...ATTGTCTAAGTC/TGAATACTAATT...TTCAG|GGA 0 1 17.832
161699807 GT-AG 0 1.000000099473604e-05 2904 rna-XM_043586813.1 29006300 4 136855271 136858174 Prionailurus bengalensis 37029 CAG|GTAATATCCC...TATGCCTTTTTT/AGCTTGCTGATC...TCAAG|CGT 1 1 19.068
161699808 GT-AG 0 1.000000099473604e-05 2329 rna-XM_043586813.1 29006300 5 136858295 136860623 Prionailurus bengalensis 37029 CAG|GTGAGTCGCT...AATTTCCTTACT/AATTTCCTTACT...TTTAG|GCA 1 1 21.921
161699809 GT-AG 0 1.000000099473604e-05 6294 rna-XM_043586813.1 29006300 6 136860724 136867017 Prionailurus bengalensis 37029 CAA|GTGAGTGGAA...TAACTTTTAACT/CTTTTTATAACT...CTTAG|TTG 2 1 24.299
161699810 GT-AG 0 2.865572378968729e-05 1163 rna-XM_043586813.1 29006300 7 136867100 136868262 Prionailurus bengalensis 37029 ACG|GTAACGAACA...TTTGATTTAACA/TTTGATTTAACA...CAAAG|GAC 0 1 26.248
161699811 GT-AG 0 1.000000099473604e-05 117 rna-XM_043586813.1 29006300 8 136868321 136868437 Prionailurus bengalensis 37029 CGG|GTAAGGATTT...TTTTTCTTCTCT/CATCTTTGCAGC...CACAG|CAG 1 1 27.627
161699812 GT-AG 0 0.003314437542932 3323 rna-XM_043586813.1 29006300 9 136870544 136873866 Prionailurus bengalensis 37029 CAG|GTACACCTGA...AATTCCTTAGAT/TGTGTGCTGATT...TCTAG|GTA 1 1 77.699
161699813 GT-AG 0 1.000000099473604e-05 1456 rna-XM_043586813.1 29006300 10 136874035 136875490 Prionailurus bengalensis 37029 TAG|GTAAGGATGG...AAATCTTTGATA/TTTTCTCTAATT...TATAG|TGA 1 1 81.693
161699814 GT-AG 0 1.000000099473604e-05 341 rna-XM_043586813.1 29006300 11 136875644 136875984 Prionailurus bengalensis 37029 TTG|GTAAGACCTA...TTTGTTTTCCCT/ATGTAGCTGACA...TATAG|TCA 1 1 85.33
161699815 GT-AG 0 0.0085569416580465 2033 rna-XM_043586813.1 29006300 12 136876072 136878104 Prionailurus bengalensis 37029 TTG|GTATGTTTGC...CCTTTTTTGTCT/TATTTGGTAACA...GATAG|CCT 1 1 87.399
161699816 GT-AG 0 1.000000099473604e-05 3318 rna-XM_043586813.1 29006300 13 136878270 136881587 Prionailurus bengalensis 37029 TTG|GTGAGTTAGC...AAGTCCTTATGA/TCTATTTTCACC...TATAG|CCA 1 1 91.322

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