I am new to the field of Bioinformatics. I was looking at a BLAST xml output file and I was trying to understand why there are multiple HSPs under each blast hit. I know HSP stands for High-Scoring Segment Pair but I don't really understand how and why multiple HSPs gets assigned to a single hit.
what is the meaning of multiple HSPs under a single hit?
877 Views Asked by user3208598 At
1
There are 1 best solutions below
Related Questions in XML
- Impose component restriction to a series of parsys-CQ
- Wrong xml being inflated android
- Shorten the XSD
- Writing/Overwriting to specific XML file from ASP.NET code behind
- Magento custom block. Can't get block's file
- Layout not shifting up when keyboard is open
- CSV to XML XSLT: How to quote excape
- Getting deeply embedded XML element values
- Saving FileSystemInfo Array to File
- how to apply templates within xsl:for-each
- Spring - configure Jboss Intros for xml with java config?
- Problems with implementing custom actionbar android
- Can Apache Ant be told to cache its XML files?
- Is Log4j2 xml configuration case sensitive?
- How to get a specific node value in XML Pull Parser
Related Questions in BIOINFORMATICS
- Delete first line of all files in a folder (on ubuntu)
- With every loop iteration in Python use resulting file for subprocess call
- What might explain the [blastall] ERROR: Arguments must start with '-' error?
- In bioinformatics, what is a singleton?
- Coding genotypes from nucleotides to 0/1/2 in R (or Python)
- How to extract short sequence based on step size?
- Find Substring of Trie Keys
- Identify conserved sequences in lists of integers
- How to extract start and end sites based on capital letter in a sequence?
- getting records which are different from two fastq files
- choosing reads with Hamming distance zero
- Bash: Converting 4 columns of text interleaved lines (tab-delimited columns to FASTQ file)
- Unable to read an SBML file in SBMLR
- How to extract coordinates in P-match result?
- Repeated ordered sequence search algorithm
Related Questions in HIT
- Direct-Mapped Cache Hit & Miss
- Mezzanine/Django hit counter for blog posts
- scanf without newline (C programming)
- CorePlot plot hit testing
- In polygon test, hit test, is a point in a polygon? method
- IOS5 GLKit GLView and Hit testing
- Difference between server hit rate and througput in jMeter reports
- PHP counter disappears/reappears
- Does pinging a website increase number of hits?
- wpf hit testing
- bitmap hit testing error
- How select hits composed entirely of Compton scattering events?
- How to print the best matching hit in the BLAST search? / BioPython
- what is the meaning of multiple HSPs under a single hit?
- Get the index of the first element in an array that meets the specified condition
Related Questions in BLAST
- TypeError: 'str' object is not callable - When filling database
- What might explain the [blastall] ERROR: Arguments must start with '-' error?
- Blast without creating any file using biopython
- Local Blast empty xml file python
- How can I upload multiple sequences to BLAST using Biopython?
- PSIPRED, how to install and make it work?
- Blast+ Local Configuration: How to configure nt and nr databases?
- Run a shell script in R with multithreading
- Graphically displaying BLAST alignments from local source
- Should I use computer-aided verification tools?
- how to replace the same number of file1 with same number from file2
- The system() of Perl "paused". Caused by $ARGV[]?
- perl script to select best blast gene line from blast result
- A for loop with strsplit in R error
- Some questions about building CLBlast and OpenCL for android device
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?
Okk, so I am giving you a general idea. For instance, for sequence A and sequence B, multiple portions of the sequence might be identical/similar or high scores. To be more specific:
Sequence A: #######AAAAAA????????ATCG///////////////////////////////
Sequence B: #######CCCCCC????????ATCG///////////////////////////////
So, you will get three results for the above two sequences. One for '#' portions, another for '?' portions, and the last one for '/' portions. Anyway, I am glad that more people are questioning about bioinformatics related stuffs.
Cheers!