Sorry says
fi1d18@RBGO-Server2:~/Downloads$ cgat gff2bed -I lincRNAs.gtf.gz --bed12-from-transcripts > lincRNAs.bed
Command 'cgat' not found, did you mean:
command 'gcat' from deb onioncat
command 'ccat' from deb ccrypt
command 'cgpt' from deb cgpt
command 'cat' from deb coreutils
command 'chat' from deb ppp
• 0 views
•
link
Hi, which desired format is this (is there a name?; from where did you find it?). In which format is your input data?
Thank you Kevin
This program can tells if something is coding or not
http://lilab.research.bcm.edu/cpat/index.php
Which need either a fasta format or bed
I have a list of long non coding RNAs which I want to know which one is coding
For this software I need to get a bed or fasta format of these genes
This is my lncRNA list
Thank you for any help
For BED you need chromosomal coordinates for your lncRNAs, in the order
chromosome | start_pos | end_pos | name. Only the first three columns out of a possible 12 are required.You just need to know which is coding and non-coding?
I have already the coordinates of my lncRNA like
I put this in the program but gave error
I'm guessing he wants to convert lncRNAs to BED 12 format, not a trivial task to automate (it certainly wasn't for circular RNAs)
Start with a BED 6 file, you must at the very least find the genomic coordinates of your lncRNA. You will also need a reference GTF file - filter out biotypes that are not associated with lncRNA biogenesis in your GTF file.
bedtools intersectwith your BED 6 file and filtered GTF file (force perfect overlaps and strand-s -f 1.00). You will now have a GTF file with all overlapping biotypes in the lncRNAs region.gtfToGenePredto convert the GTF file to a genepred file.genePredToBedto convert the genepred to a bed 12 file.disregard, OP only wants to find out if lncRNA is coding :/
you can download lncRNA db gtf from here and convert gtf to bed using bedops.