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
    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
  • seqadmin
    Current Approaches to Protein Sequencing
    by seqadmin


    Proteins are often described as the workhorses of the cell, and identifying their sequences is key to understanding their role in biological processes and disease. Currently, the most common technique used to determine protein sequences is mass spectrometry. While still a valuable tool, mass spectrometry faces several limitations and requires a highly experienced scientist familiar with the equipment to operate it. Additionally, other proteomic methods, like affinity assays, are constrained...
    04-04-2024, 04:25 PM

ad_right_rmr

Collapse

News

Collapse

Topics Statistics Last Post
Started by seqadmin, 04-11-2024, 12:08 PM
0 responses
59 views
0 likes
Last Post seqadmin  
Started by seqadmin, 04-10-2024, 10:19 PM
0 responses
57 views
0 likes
Last Post seqadmin  
Started by seqadmin, 04-10-2024, 09:21 AM
0 responses
52 views
0 likes
Last Post seqadmin  
Started by seqadmin, 04-04-2024, 09:00 AM
0 responses
56 views
0 likes
Last Post seqadmin  
Working...
X