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)

14 rows where transcript_id = 32765275

✎ View and edit SQL

This data as json, CSV (advanced)

Suggested facets: dinucleotide_pair, score, phase

id ▼ dinucleotide_pair is_minor score length transcript_id ordinal_index start end taxonomy_id scored_motifs phase in_cds relative_position
183236932 TG-AA 0 0.0006197755883094 2944 rna-XM_004951851.3 32765275 1 7949221 7952164 Setaria italica 4555 GTC|TGATTAACGT...CGGACCGGACCA/CCGGACCAAACC...CGTAA|CGG 0 1 68.932
183236933 GT-AG 0 1.000000099473604e-05 966 rna-XM_004951851.3 32765275 2 7948028 7948993 Setaria italica 4555 CAG|GTGCGCGGAT...AGTGCTTTATTG/CAGTGCTTTATT...TCCAG|GCC 2 1 73.013
183236934 GT-AG 0 0.0047981504600565 180 rna-XM_004951851.3 32765275 3 7947735 7947914 Setaria italica 4555 AAG|GTATATTTCT...CAAATCCTATTT/AGTTAACTAATT...GCCAG|AAT 1 1 75.045
183236935 GT-AG 0 2.8843758852079974e-05 92 rna-XM_004951851.3 32765275 4 7947454 7947545 Setaria italica 4555 GAG|GTAACATGCG...TCTATCATACCC/CTATATGTAATT...TGTAG|GTC 1 1 78.443
183236936 GT-AG 0 1.4780562549172932e-05 241 rna-XM_004951851.3 32765275 5 7947108 7947348 Setaria italica 4555 TTG|GTTTGTACTT...TTCTCCTTTCTT/CATTGTTTAAAC...TTCAG|GGG 1 1 80.331
183236937 GT-AG 0 1.000000099473604e-05 87 rna-XM_004951851.3 32765275 6 7946950 7947036 Setaria italica 4555 AAG|GTGTGATTTA...ATTTGCTTATTT/TATTTACTTATT...GACAG|ATG 0 1 81.607
183236938 GT-AG 0 1.000000099473604e-05 105 rna-XM_004951851.3 32765275 7 7946770 7946874 Setaria italica 4555 CAG|GTAGAGTTGC...CTCTTTTTATTT/GATAACTTTATT...GACAG|GGG 0 1 82.956
183236939 GT-AG 0 0.000171634602725 361 rna-XM_004951851.3 32765275 8 7946188 7946548 Setaria italica 4555 TTG|GTAAGCATTG...ACTCTTTTAATA/AAATGATTCATT...CACAG|GAT 2 1 86.929
183236940 GT-AG 0 1.000000099473604e-05 108 rna-XM_004951851.3 32765275 9 7945890 7945997 Setaria italica 4555 CAG|GTGATTTGTG...TATTCAGTAGTT/AAAATGTTCATG...TGCAG|CCT 0 1 90.345
183236941 GT-AG 0 1.000000099473604e-05 104 rna-XM_004951851.3 32765275 10 7945720 7945823 Setaria italica 4555 CGA|GTAAGGAACC...AAATGTTTAACC/AAATGTTTAACC...CTCAG|ATT 0 1 91.532
183236942 GT-AG 0 1.000000099473604e-05 456 rna-XM_004951851.3 32765275 11 7945175 7945630 Setaria italica 4555 TAG|GTAGGTGTGC...CTAATATTATTT/ATGGAATTCAAT...TTCAG|CCA 2 1 93.132
183236943 GT-AG 0 0.0001224305021585 81 rna-XM_004951851.3 32765275 12 7944979 7945059 Setaria italica 4555 ATG|GTAAGTTCTG...TCTTCTTTGATC/TCTTCTTTGATC...CCTAG|GCA 0 1 95.2
183236944 GT-AG 0 1.000000099473604e-05 86 rna-XM_004951851.3 32765275 13 7944841 7944926 Setaria italica 4555 GAA|GTGAGTTTAG...GTTCTCTGAACT/TCTTTTCTGAAA...ATTAG|AGA 1 1 96.134
183236945 GT-AG 0 1.000000099473604e-05 91 rna-XM_004951851.3 32765275 14 7944649 7944739 Setaria italica 4555 CAG|GTTCGACCTC...AAAATCTTACTG/ATCTTACTGACC...CACAG|AAT 0 1 97.95

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