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)

11 rows where transcript_id = 15198772

✎ 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
82239023 GT-AG 0 1.000000099473604e-05 12485 rna-XM_014312189.2 15198772 1 2564367 2576851 Geospiza fortis 48883 AAG|GTAAGTCTCG...TTTTTCTTATTC/ATTTTTCTTATT...AATAG|GTG 0 1 5.784
82239024 GT-AG 0 1.000000099473604e-05 7085 rna-XM_014312189.2 15198772 2 2556523 2563607 Geospiza fortis 48883 CAG|GTAGAGTTAA...CTTCTTTTATTT/ATTTTTTTTAAT...TTTAG|GAG 0 1 38.303
82239025 GT-AG 0 3.3821493431734945e-05 4299 rna-XM_014312189.2 15198772 3 2552113 2556411 Geospiza fortis 48883 GAG|GTAAACTAGG...CAGCTATTAATC/TGCTGACTTACT...GGAAG|GTG 0 1 43.059
82239026 GT-AG 0 1.000000099473604e-05 1262 rna-XM_014312189.2 15198772 4 2550638 2551899 Geospiza fortis 48883 AAG|GTCAGTTTAC...ACTACTTTGTTT/CAGGCTCCAACT...TACAG|GAG 0 1 52.185
82239027 GT-AG 0 6.153109981734375e-05 937 rna-XM_014312189.2 15198772 5 2549547 2550483 Geospiza fortis 48883 TAG|GTATAGTGTC...ACTGTCTGATTG/GACTGTCTGATT...ACTAG|GAT 1 1 58.783
82239028 GC-AG 0 1.000000099473604e-05 419 rna-XM_014312189.2 15198772 6 2549015 2549433 Geospiza fortis 48883 CAG|GCAAGGAACC...TTAACATTAAAA/CTGTGAATAACT...CTTAG|GAA 0 1 63.625
82239029 GT-AG 0 0.0005441396617137 2682 rna-XM_014312189.2 15198772 7 2546148 2548829 Geospiza fortis 48883 AAG|GTTTGCCTTG...CATATTTTAATA/CATATTTTAATA...GAAAG|GCT 2 1 71.551
82239030 GT-AG 0 2.8422419613770363e-05 1202 rna-XM_014312189.2 15198772 8 2544799 2546000 Geospiza fortis 48883 TGC|GTAAGTAATT...TGAACCTAATCT/TTGAACCTAATC...TACAG|ACT 2 1 77.849
82239031 GT-AG 0 1.000000099473604e-05 184 rna-XM_014312189.2 15198772 9 2544497 2544680 Geospiza fortis 48883 GTG|GTAAGACTGC...GTTTCCATACAC/CATGTTTCCATA...TTTAG|GAA 0 1 82.905
82239032 GT-AG 0 1.000000099473604e-05 650 rna-XM_014312189.2 15198772 10 2543742 2544391 Geospiza fortis 48883 AAG|GTAAGATGAA...TAAATTGTAAAA/GTGTATGTAATG...AAAAG|CAG 0 1 87.404
82239033 GT-AG 0 0.0005724163326355 1499 rna-XM_014312189.2 15198772 11 2542040 2543538 Geospiza fortis 48883 AAG|GTATTTGTCC...TAATGCTTATTT/CTAATGCTTATT...CACAG|GAC 2 1 96.101

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