Print

Print


Great
Thanks all

On Sun, Oct 11, 2009 at 7:51 PM, Dianne Patterson <[log in to unmask]>wrote:

> Hi Moran,
> You can run them in a script...dump them into a log file and then use tools
> like sed, awk or cut to extract the fields you want. Here are a couple of
> examples using awk:
> =================
> # From the file sedtemp extract fields 1,2,10,11,12,13,14 and dump them
> into count_log.txt
> awk '{print $1, $2, $10, $11, $12, $13, $14}' sedtemp >> count_log.txt
> =================
>
> #This takes a file called overlap_vols and gets fields $2, $6 and
> calculates $11/($4/100).
> #All of these get put into overlap_parts.txt
>
> awk '{print $2, $6, $11/( $4/100 )}' overlap_vols >> overlap_parts.txt
> ==================
> I hope that is helpful.
>
> -Dianne
>
>
>  2009/10/11 Moran Artzi <[log in to unmask]>
>
>> Hi,
>>
>> Using fslstats -R option results min intensity + max intensity outputs
>> Is there any option to get each one separately (in order to run its on
>> script)
>>
>> Thanks
>> Moran
>>
>>
>
>
> --
> Dianne Patterson, Ph.D.
> [log in to unmask]
> University of Arizona
> SLHS 328
> 621-5105
>