-
Notifications
You must be signed in to change notification settings - Fork 0
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
GFF to BB #44
Comments
I have not seen this error before. So you have a created a bigbed file using bedToBigBed. Gene bigbed files are expected to have start/stop codon and exons for each gene. For example in bed format: SL2.40ch06 3687 7998 Solyc06g005000.2.1 0 + 3705 7789 0 3 720,752,336, 0,1165,3975, Solyc06g005000.2 IBR finger domain-containing protein (AHRD V1 *--- C1GML6_PARBD)%3B contains Interpro domain(s) IPR002867 Zinc finger%2C C6HC-type If you used the Could you try to use the |
Thanks for the suggestion, using the 'features' datatype finish without error's but did not show anything in the viewer. |
Good to hear. The bigbed file looks correct. The viewer fetches the bigbed file using a http(s) url. During the registration you need to use a url to the big bed file that the viewer running in a web browser can read. What is the command you used to register? |
Thank you for your time, so far. Hopefully this helps. |
To find out why the non-gene features are not showing up, I need halve a day to reproduce and fix. To write a script which can convert a gff file with gene features (exon, cds) I will need 2 days. |
Lets revisit whether such scripts are within scope of AVE2 |
There are discussions with similar problem, for example https://www.biostars.org/p/85869/ |
Tested sample gff from RijkZwaan with gff3_to_bed_converter.py, but did not output anything. |
Tried UCSC utilities on sorted gff got OK looking bed file with the following commands:
|
I have had a lot of problems running your workflow, making it necessary to change somethings in the start file. But now I have run into something I can not fix. |
You where using the wrong bedToBigBed command, that command was for non-gene features for genes you have to use the The bed to big bed command should be bedToBigBed -tab -type=bed12+2 genemodels_sorted_TAB.bed14_v2 chrom.sizes genemodels_sorted_TAB.bb Output:
|
A screenshot was received where the genes bb file with 242 chromosomes was requested with This error is similar as hammerlab/pileup.js#446 and should be fixed in the application as nlesc-ave/ave-app#37. |
I have been following the instructions on the docker hub (https://hub.docker.com/r/ave2/allelic-variation-explorer/) to input gff data in to the system.
First I get an error when running the bedToBigBed script:
pass1 - making usageList (7 chroms): 141 millis
Trailing characters parsing signed integer in field 5 line 1 of /data/glimmer.bed, got .
This might be related to the 6th column of the GFF file. So I changed that column to '1'.
And repeat the steps, then again when I get to the bedToBigBed script I get a list of errors:
Traceback (most recent call last):
File "/opt/conda/envs/ave2/bin/avedata", line 11, in
load_entry_point('avedata', 'console_scripts', 'avedata')()
File "/opt/conda/envs/ave2/lib/python3.5/site-packages/click/core.py", line 722, in call
return self.main(*args, **kwargs)
File "/opt/conda/envs/ave2/lib/python3.5/site-packages/click/core.py", line 697, in main
rv = self.invoke(ctx)
File "/opt/conda/envs/ave2/lib/python3.5/site-packages/click/core.py", line 1066, in invoke
return _process_result(sub_ctx.command.invoke(sub_ctx))
File "/opt/conda/envs/ave2/lib/python3.5/site-packages/click/core.py", line 895, in invoke
return ctx.invoke(self.callback, **ctx.params)
File "/opt/conda/envs/ave2/lib/python3.5/site-packages/click/core.py", line 535, in invoke
return callback(*args, **kwargs)
File "/app/avedata/commands.py", line 48, in register
register_file(datatype, filename, genome, species)
File "/app/avedata/commands.py", line 61, in register_file
genes_2_whoosh(filename, whoosh_dir)
File "/app/avedata/genes.py", line 29, in genes_2_whoosh
gene_id=fields[12],
IndexError: list index out of range
Have you seen this before and how do I fix it?
The text was updated successfully, but these errors were encountered: