Seqanswers Leaderboard Ad

Collapse

Announcement

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

  • piwi RNA / good practices

    Hi ! I had hard time finding a good piwi database so here is what I did, you can use it and tell me if it seems reasonable.
    http://pirnabank.ibab.ac.in is the most used database, thez give you a list of fasta file corresponding to HG18 coordinates so I made this script to build a gff from their website:


    Code:
    for i in X Y $(seq 1 21); do 
      wget http://pirnabank.ibab.ac.in/cgi-bin/chr_result.pl?org=Homo_sapiens\&table=Human37_piRNA\&chr=$i\&from=0\&to=1000000000;
      mv chr_result.pl?org=Homo_sapiens\&table=Human37_piRNA\&chr=$i\&from=0\&to=1000000000 $i.html;
    done 2> /dev/null >/dev/null
    
    
    (echo "## gff-version 3"
    echo "## date: $(date +%Y_%m_%d)"
    echo "## Chromosomal coordinates of piwi RNA according to piRNAbank catin hsa genome"
    for i in $(seq 1 21) X Y; do
    cat $i.html  | sed ':a;N;$!ba;s/\n/ /g' | sed 's/table/\n/g' |  grep pir_info | tr ':\-=><|' ' '  | sed 's/  */ /g'  > temp 
    grep -v Accession temp  | awk '{print $19,"NOID",$73,$74,$75,$76}'> temptemp
    grep Accession temp | cut -d' ' -f20,61,93,94,95,96 >> temptemp
    cat temptemp   | tr -d '[]"' | sort -nk3 > temp
    cat temp| awk '{strand="-";if($6=="Plus"){strand="+"};printf "chr%s\tpiRNAbank\tpiwi\t%i\t%i\t.\t%s\t.\tID=%s;Name=%s\n",$3,$4,$5,strand,$2,$1}'
    done
    )  > pirna.gff

Latest Articles

Collapse

  • seqadmin
    Recent Advances in Sequencing Analysis Tools
    by seqadmin


    The sequencing world is rapidly changing due to declining costs, enhanced accuracies, and the advent of newer, cutting-edge instruments. Equally important to these developments are improvements in sequencing analysis, a process that converts vast amounts of raw data into a comprehensible and meaningful form. This complex task requires expertise and the right analysis tools. In this article, we highlight the progress and innovation in sequencing analysis by reviewing several of the...
    Yesterday, 07:48 AM
  • seqadmin
    Essential Discoveries and Tools in Epitranscriptomics
    by seqadmin




    The field of epigenetics has traditionally concentrated more on DNA and how changes like methylation and phosphorylation of histones impact gene expression and regulation. However, our increased understanding of RNA modifications and their importance in cellular processes has led to a rise in epitranscriptomics research. “Epitranscriptomics brings together the concepts of epigenetics and gene expression,” explained Adrien Leger, PhD, Principal Research Scientist...
    04-22-2024, 07:01 AM

ad_right_rmr

Collapse

News

Collapse

Topics Statistics Last Post
Started by seqadmin, Today, 06:57 AM
0 responses
9 views
0 likes
Last Post seqadmin  
Started by seqadmin, Yesterday, 07:17 AM
0 responses
14 views
0 likes
Last Post seqadmin  
Started by seqadmin, 05-02-2024, 08:06 AM
0 responses
19 views
0 likes
Last Post seqadmin  
Started by seqadmin, 04-30-2024, 12:17 PM
0 responses
23 views
0 likes
Last Post seqadmin  
Working...
X