miRanda only displays hits?
Hi,
Is it possible that the output file of miranda only displays hits, without also displaying all those where no hits were found?
rna-seq
• 2,291 views
•
link
written
by
stijn.vandenbrande •
0 answers
No answers yet.
Log in to answer this question.
More posts like this
-
hmmsearch output multiple alignment with initial query sequences
written by el97004 •Hi all! I'm running a hmmsearch using a list of proteins, and I'm wondering if the program is able to output a final multiple alignment …
-
Download pnly latest sequences from GenBank
written by aquaq •Hi All, I am developing a webserver that would run a pipeline at every update of GenBank. After every update, I would like to download …
-
To get number of hits from blastp output file
written by fec2 •Hi all, I have multiple blastp output (format 6) in a directory, I wish to calculate the number of hits with sequence identity of more …
-
Comparing two BLAST output files with biopython
written by Biologist123 •Hi folks, I have been trying to work out how to compare two or more BLAST output files with biopython and either (a) remove hits …
-
Reverse complement transcripts in a TSA?
written by stijn.vandenbrande •Hi all, When looking for potential miRNA binding sites against a TSA available on NCBI, we blast the transcript hits to NCBI. It appears that …
-
miRanda output meaning?
written by stijn.vandenbrande •Hello, After using the miRanda tool the first time, I've got output like this: **Score: 167.000000 Q:2 to 20 R:3340 to 3360 Align Len (18) …
-
miRanda target information extraction
written by leo1985.arnab •Hello, I have the output generated from miRanda. My question is as follows: I want to extract the line ( protein information) **After** the "Read …
-
Standalone blast: how to display only results with positive number of hits ?
written by lordbleys •Hi! Here is my problem: I have a list of sequences (reads in fasta format) from a NGS experiment, and I want to identify some …
-
Miranda Output Parsing
written by najibveto •<p>hello everyone one</p> <p>i am doing microrna prediction target using Miranda. i used the Java based version and i got a long list of hits …
-
How To Concatenate Blast Results (M8) Via Setting Threshold Of Distance Between Two Query Hits
written by xiongtl2013 •<p>hi, dear guys</p> <p>I performance blastn (-m 8) using a query file of many sequences, and for each query sequence, the output contains many fragmental …
Someone already solve this problem by just extracting the info of the hits executing
grep -A 1 "Scores for this hit:" rad.txt | sort | grep >You can see the original thread here :)
Thanks! How should I command this in terminal? If i run miranda: file1 file2 and then add "grep -A 1 "Scores for this hit:" rad.txt | sort | grep >", it gives an error?
So miRanda works like this:
miranda file1 file2 -o file3So after the results are saved on file3, you can write
grep -A 1 "Scores for this hit:" file3 | sort | grep '>'. If you just want the hits and not have an intermediate file, just typemiranda file1 file2 | grep -A 1 "Scores for this hit:" file3 | sort | grep '>'