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

✎ 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
116462935 GT-AG 0 0.000110041201038 2776 rna-XM_021648308.1 21550668 1 3893460 3896235 Meriones unguiculatus 10047 TCT|GTAAGTGTTC...CTTCCCTTCTCT/CAGATTTTCACA...TCCAG|CTC 0 1 6.972
116462936 GT-AG 0 1.000000099473604e-05 2972 rna-XM_021648308.1 21550668 2 3890429 3893400 Meriones unguiculatus 10047 CTG|GTGAGCTGAT...AGTGCCTGATTT/CAGTGCCTGATT...GCCAG|GGT 2 1 11.256
116462937 GT-AG 0 1.000000099473604e-05 2762 rna-XM_021648308.1 21550668 3 3887519 3890280 Meriones unguiculatus 10047 TTT|GTGAGTCTCC...GGTACCTGACCT/GGGTACCTGACC...GGTAG|GGC 0 1 22.004
116462938 GT-AG 0 1.000000099473604e-05 77 rna-XM_021648308.1 21550668 4 3887292 3887368 Meriones unguiculatus 10047 GAG|GTGAGAGGTG...TGAGTCTTAGCT/TCAGTGCTGACT...ACCAG|GTC 0 1 32.898
116462939 GT-AG 0 1.000000099473604e-05 217 rna-XM_021648308.1 21550668 5 3886988 3887204 Meriones unguiculatus 10047 CAG|GTAAGGGATG...GAGTTGTTGTCA/GTTGTTGTCAGG...TGTAG|AGC 0 1 39.216
116462940 GT-AG 0 0.0001390843777682 393 rna-XM_021648308.1 21550668 6 3886466 3886858 Meriones unguiculatus 10047 AAG|GTACCAGGGG...GTGACCTTGGCT/ACAGCTGTGACC...AACAG|GTG 0 1 48.584
116462941 GT-AG 0 1.000000099473604e-05 306 rna-XM_021648308.1 21550668 7 3886039 3886344 Meriones unguiculatus 10047 TCG|GTGAGCCGGG...TCCACTTTAGCA/ACCTTGTCCACT...GGCAG|CCA 1 1 57.371
116462942 GT-AG 0 1.000000099473604e-05 93 rna-XM_021648308.1 21550668 8 3885869 3885961 Meriones unguiculatus 10047 AAG|GTAAGTGTGA...ACCCCACTGACT/ACCCCACTGACT...TCTAG|GTG 0 1 62.963
116462943 GT-AG 0 1.000000099473604e-05 95 rna-XM_021648308.1 21550668 9 3885684 3885778 Meriones unguiculatus 10047 CAG|GTGAGGAGGG...CAGGTTATAACT/TTATAACTGACC...TCCAG|GCC 0 1 69.499
116462944 GT-AG 0 1.000000099473604e-05 85 rna-XM_021648308.1 21550668 10 3885412 3885496 Meriones unguiculatus 10047 TCA|GTGAGTGGGA...TTAGCTGGGACT/CTGGGACTCAGT...CCCAG|AGA 1 1 83.079
116462945 GT-AG 0 3.206926917723551e-05 419 rna-XM_021648308.1 21550668 11 3884913 3885331 Meriones unguiculatus 10047 AAG|GTAGGCTGGG...GATGTCTTAGGG/TGATGTCTTAGG...CCCAG|GGC 0 1 88.889
116462946 GT-AG 0 1.000000099473604e-05 81 rna-XM_021648308.1 21550668 12 3884745 3884825 Meriones unguiculatus 10047 AAG|GTAAGAGAAG...TGGGCCTGGCTA/AGAAGGCTCAGT...TGCAG|GAT 0 1 95.207

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