Search Results

Search: Posts Made By: TuAd
1,237
Posted By ctsgnb
awk 'NR>3 && $2>500{$2-=100}1' OFS="\t"...
awk 'NR>3 && $2>500{$2-=100}1' OFS="\t" file
1,237
Posted By Franklin52
Try: awk 'NR>3 && $2 > 500{$2-=100}1'...
Try:
awk 'NR>3 && $2 > 500{$2-=100}1' file
1,842
Posted By bartus11
Try this script: #!/usr/bin/perl for $f...
Try this script: #!/usr/bin/perl
for $f (@ARGV){
open I, "$f";
while (<I>){
chomp;
@F=split / /;
$h="$F[0] $F[1]" if $n==0;
$h.=" $F[2]" if $.==1;
$n++ if $.==1;
...
1,842
Posted By bartus11
One more thing... shouldn't there be line like...
One more thing... shouldn't there be line like this for entries that are identical in both files:chr1 631246 x xinstead of chr1 631246 x e
chr1 631246 e x?
12,966
Posted By itkamaraj
for i in *.fastq; my_variable=`echo...
for i in *.fastq; my_variable=`echo $my_variable$i; done

./bowtie [parameters] index_file ~/infiles/$my_varibale outfile.sam
Showing results 1 to 5 of 5

 
All times are GMT -4. The time now is 06:37 AM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy