Results for "Tab"

Wire posts

  • Convert space separated data to tab separated: perl -p -i -e 's/\s+/\t/g' file.txt #Perl #Tipsoftheday #Perlonliner

    3866 days ago

  • #Extract #Chromosome #Number And Start Position #Reads: samtools view bamfile.bam|awk '{print $3 "\t" $4 "\t" $4+length($10)-1}' > newfile.tab

    2870 days ago

  • Remove tab with comma in file: perl -lpe 's/\t/,/g' < flattened_line_0.fa.data > output.csv #PerlTrick #PerlO,liner #Perl #Tab #Comma

    2835 days ago

  • Replace space with tab: perl -lpe 's/\s/\t/g' < trf_file.dat > outfile.txt #TRF #Tab #Space #Replace #Perl #PerlTrick #PerlOneliner

    2833 days ago

  • Convert a SAM file to tab-delimited alignment coordinates https://gist.github.com/sjackman/7016520 #SAM #BAM #Convert #Tab

    2624 days ago

  • Replace space with tab. $ awk -v OFS="\t" '$1=$1' file1 #tab #space #replace #awk

    2465 days ago

  • Tab file to FASTA file $ awk '{print ">"$1"\n"$2}' allSeq_tm.txt > allSeq_tm.fa #Fasta #Tab #Convert #Tab2Fasta

    2025 days ago