Results for "Extract"

Wire posts

  • One code to find them all is a set of perl scripts to extract useful information from RepeatMasker http://doua.prabi.fr/software/one-code-to-find-them-all

    2736 days ago

  • Extract ten lines below matched string with grep: grep -A 10 "string" filename1 ; -B for above and -C for both #grep #Linux #Tricks #Lines #Matches

    2717 days ago

  • Extract values : cat seeALN.xls | grep -w "scaffold_1" to #grep #exact #matching words from file seeALN.xls

    2634 days ago

  • #Extract a #sequence from #multi-fasta file: $ perl -ne 'if(/^>(\S+)/){$c=grep{/^$1$/}qw(id1 id2)}print if $c' fasta.file

    2606 days ago

  • Find a pattern in first 7 characters of reads. bioawk -c fastx 'substr($seq,0,7) == $TAG { print }' reads.fq.gz #Reads #NGS #Extract #Pattern

    2497 days ago

  • #Extract all the files from a #directory and #sub-dir with #pattern. $ find TrimmedDir -type f | grep "L_" | xargs -i cp {} .

    2225 days ago

  • Get the sequences using coordinates in bed file. $ bedtools getfasta -fi input_file.fa -bed regions_file.bed #Bed #Extract #Sequence #bedtools

    2240 days ago

  • Extract fasta with Ids. $ perl -ne 'if(/^>(\S+)/){$c=grep{/^$1$/}qw(id1 id2)}print if $c' fasta.file #extract #fasta #sequence #ids

    2205 days ago

  • https://scrapy.org/ #extract #data #from #websites #webscraping

    2180 days ago

  • Extract sequence by ids $ xargs samtools faidx Adineta_vaga.v2.pep.fa < AlienIds > allAlienSeq.fa #Extract #Ids #Sequences

    1961 days ago