Seqanswers Leaderboard Ad

Collapse

Announcement

Collapse
No announcement yet.
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

  • ardmore
    replied
    Thank you.

    Leave a comment:


  • gringer
    replied
    If it's from a BAM/SAM file, then look at the BAM/SAM specification:



    For example, the fourth field of SAM files is 1-based:
    POS: 1-based leftmost mapping POSition of the first matching base. The first base in a reference
    sequence has coordinate 1. POS is set as 0 for an unmapped read without coordinate. If POS is
    0, no assumptions can be made about RNAME and CIGAR.
    whereas the internal BAM representation is 0-based:
    pos / 0-based leftmost coordinate (= POS − 1) / int32 t / [-1]

    Leave a comment:


  • ardmore
    replied
    It is from a bam file output. If we define a region such as chr22:10000-20000.
    And we get the consensus sequence, we only interest one small region around a specific position.
    How to?

    Leave a comment:


  • ffinkernagel
    replied
    The sequence is not your issue. A sequence itself is not '0 based', it's just a list of characters.
    Where does your position 63150935 come from?

    Leave a comment:


  • ardmore
    replied
    My question is not for C#. I meant that I am not sure whether the sequence is defined as 0 based or not. The sequence is a fasta file or extracted from a genome.

    Leave a comment:


  • ffinkernagel
    replied
    In c# the indices are 0 based, so the first one would be apppropriate if your position is also defined as 0 based.

    If it was 1 based (for example, if it comes from Ensembl), you'll need to do the second one though.

    Leave a comment:


  • ardmore
    replied
    Okay. If the sequence is given and a position 63150935 is given as well. I want to get 1000kb size around this point by C#.
    Then
    Code:
    string trunk = sequence.Substring(63150935-500000,1000000);
    or
    Code:
    string trunk = sequence.Substring(63150934-500000,1000000);
    Which one is correct?
    Last edited by ardmore; 11-15-2011, 08:26 AM.

    Leave a comment:


  • ffinkernagel
    replied
    That is undefined if you don't specify which system (or language) you're working with.

    Leave a comment:


  • ardmore
    started a topic fasta sequence: 0 based or 1 based index

    fasta sequence: 0 based or 1 based index

    When we say the position of a sequence, is zero based or one based?
    Because I want to extract a sub sequence from a long one.
    Code:
    AGCTTT
    012345
    OR
    Code:
    AGCTTT
    123456
    Thanks.

Latest Articles

Collapse

  • seqadmin
    Choosing Between NGS and qPCR
    by seqadmin



    Next-generation sequencing (NGS) and quantitative polymerase chain reaction (qPCR) are essential techniques for investigating the genome, transcriptome, and epigenome. In many cases, choosing the appropriate technique is straightforward, but in others, it can be more challenging to determine the most effective option. A simple distinction is that smaller, more focused projects are typically better suited for qPCR, while larger, more complex datasets benefit from NGS. However,...
    10-18-2024, 07:11 AM
  • seqadmin
    Non-Coding RNA Research and Technologies
    by seqadmin




    Non-coding RNAs (ncRNAs) do not code for proteins but play important roles in numerous cellular processes including gene silencing, developmental pathways, and more. There are numerous types including microRNA (miRNA), long ncRNA (lncRNA), circular RNA (circRNA), and more. In this article, we discuss innovative ncRNA research and explore recent technological advancements that improve the study of ncRNAs.

    Nobel Prize for MicroRNA Discovery
    This week,...
    10-07-2024, 08:07 AM

ad_right_rmr

Collapse

News

Collapse

Topics Statistics Last Post
Started by seqadmin, 11-01-2024, 06:09 AM
0 responses
18 views
0 likes
Last Post seqadmin  
Started by seqadmin, 10-30-2024, 05:31 AM
0 responses
18 views
0 likes
Last Post seqadmin  
Started by seqadmin, 10-24-2024, 06:58 AM
0 responses
24 views
0 likes
Last Post seqadmin  
Started by seqadmin, 10-23-2024, 08:43 AM
0 responses
53 views
0 likes
Last Post seqadmin  
Working...
X