Entering edit mode
9.3 years ago
priyankamaripuri
▴
40
Hello,
I am running Miso for single end and paried end reads, while I am trying to run miso, I am getting an following error:
miso --run data/human/splicing_project/indexed_A3_events/ GM_sorted.bam --output-dir data/human/splicing_project/my_output1/ --read-len 100 --paired-end 294 75.4
MISO (Mixture of Isoforms model)
Probabilistic analysis of RNA-Seq data for detecting differential isoforms
Use --help argument to view options.
Using MISO settings file: /usr/local/lib/python2.7/site-packages/misopy/settings/miso_settings.txt
Computing Psi values...
- GFF index: /home/priyanka/data/human/splicing_project/indexed_A3_events
- BAM: /home/priyanka/GM_sorted.bam
- Read length: 100
- Output directory: /home/priyanka/data/human/splicing_project/my_output1
Checking your GFF annotation and BAM for mismatches...
Checking if BAM has mixed read lengths...
Found reads of length 100 in BAM.
Mapping genes to their indexed GFF representation, using /home/priyanka/data/human/splicing_project/indexed_A3_events
Searching for /home/priyanka/data/human/splicing_project/indexed_A3_events/genes_to_filenames.shelve..
- Found shelved file.
Preparing to run 1 batches of jobs...
Running batch of 2107 genes..
- Executing: python /usr/local/lib/python2.7/site-packages/misopy/run_miso.py --compute-genes-from-file "/home/priyanka/data/human/splicing_project/my_output1/batch-genes/batch-0_genes.txt" /home/priyanka/GM_sorted.bam /home/priyanka/data/human/splicing_project/my_output1 --read-len 100 --paired-end 294.0 75.4 --settings-filename /usr/local/lib/python2.7/site-packages/misopy/settings/miso_settings.txt
- Submitted thread batch-0
Waiting on 1 threads...
08/17/2015 11:45:54 AM - miso_main - WARNING - Thread batch-0 might have failed...
Thanx in advance
Execute the following command and see if you get any specific error:
I also experienced the same problem, but I was not able to run this line. The following error appears (even running from myenv)
Any insight on what the problem might be?
Where is misopy installed? It might not be in the directory shown. Hence, it shows the no directory error.
Is your BAM file indexed? It worked for me when I indexed my BAM file and regenerated indexed events. Hope this helps...
Yes, now I reinstalled globally (and I always run sudo), but I still got the error.
This is my code:
...and this is the output
I tried to change the miso settings to 3 threads and it still does not work.
If by indexed .BAM you mean a .bam.bai file in the same folder, yes, I also have that. Is that what you did?
Thanks in advance!
I tried to run this and I got the error
But the file is there o.o
I guess it's an installation problem. In the MISO document, there is "Testing MISO" which ensures that you can run miso properly. I suggest you to go through it and run the following lines:
Try this and let me know.
Hope this helps...
I am trying to test MISO using the command you provided. I get the following error:
I assume this is an installation problem, but uninstalling and installing again won't help. I have the newest versions of samtools and bedtools. I installed using root.
Turns out it was a non-issue. Apparently the script
test_miso.py
looks forc2c12.Atp2b1.sorted.bam
, but the file is namedc2c12.Atp2b1.bam
. Fixing the script (or renaming the bam file) solved it.Hi. I'm also have this problem with batch-0, and all of previous solutions wasn't helpful, all the commands for testing MISO returns OK. Did you solved it?
Hi,
To debug:
First check
your-output-dir/A5SS/batch-logs/*.log
My problem was that I indexed my pickle files from another directory, then moved them. The .shelves file links to the absolute path of where you initially indexed the files, which was why it couldn't find them when I ran miso. To solve this, I had to re-index all my annotation files with:
After running this command -
python -m unittest discover misopy
, I got this error:I installed misopy by
conda install -c bioconda misopy