Tag Archives: ATOM

Why Intel Is Poised to Outperform

By Brian Pacampara, Pacampara, The Motley Fool

Filed under:

Based on the aggregated intelligence of 180,000-plus investors participating in Motley Fool CAPS, the Fool’s free investing community, computer chip giant Intel has earned a coveted five-star ranking.

With that in mind, let’s take a closer look at Intel and see what CAPS investors are saying about the stock right now.

Intel facts

 

 

Headquarters (founded)

Santa Clara, Calif. (1968)

Market Cap

$105.7 billion

Industry

Semiconductors

Trailing-12-Month Revenue

$53.3 billion

Management

CEO Paul Otellini (since 2005)

CFO Stacy Smith (since 2007)

Return on Equity (average, past 3 years)

25%

Cash/Debt

$18.2 billion/$13.6 billion

Dividend Yield

4.2%

Competitors

AMD

Samsung Electronics

Texas Instruments

Sources: S&P Capital IQ and Motley Fool CAPS.

On CAPS, 98% of the 9,989 members who have rated Intel believe the stock will outperform the S&P 500 going forward.

Just last month, one of those Fools, CardinalRam, succinctly summed up the bull case case for our community:

[Intel] is just beginning to see the impact of the ATOM processor and it will get better over time. I still think this is a 12+ month play. I also think that UltraBook will be successful over the 1-2 year time frame. Then there is the server market — there is little competition to who powers the “cloud.” They probably won’t return to double digit growth, but as undervalued as [Intel] is today and with a [4+% dividend yield], I don’t see how they can’t outperform.

In fact, when it comes to dominating markets, it doesn’t get much better than Intel’s position in the PC microprocessor arena. However, that market is maturing, and Intel finds itself in a precarious situation longer term if it doesn’t find new avenues for growth. In this premium research report on Intel, our analyst runs through all of the key topics investors should understand about the chip giant. Click here now to learn more.

var FoolAnalyticsData = FoolAnalyticsData || []; FoolAnalyticsData.push({ eventType: “TickerReportPitch”, contentByline: “Brian Pacampara, Pacampara”, …read more
Source: FULL ARTICLE at DailyFinance

Search field in text file and replace value

By doom4

Hi there,

First of all this is my first post here. Thank you in advance for your help.

What I am trying to do is the following. I have a text file where each field of each row is separated by a tabulator.

Looks like this:

Code:

ATOM 1 N HSE A 26 3.033 -10.429 -2.262 1.00 17.07 N1+
ATOM 2 CA HSE A 26 3.226 -11.674 -3.040 1.00 14.73 C
ATOM 3 CB HSE A 26 4.705 -11.978 -3.127 1.00 15.52 C
ATOM 4 CG HSE A 26 5.055 -13.031 -4.057 1.00 15.51 C
ATOM 5 ND1 HSE A 26 4.959 -14.364 -3.715 1.00 15.39 N
ATOM 6 CE1 HSE A 26 5.349 -15.091 -4.746 1.00 17.55 C
ATOM 7 NE2 HSE A 26 5.765 -14.285 -5.726 1.00 21.97 N
ATOM 8 CD2 HSE A 26 5.577 -12.980 -5.296 1.00 18.48 C
ATOM 9 C HSE A 26 2.538 -12.795 -2.235 1.00 13.15 C
ATOM 10 O HSE A 26 2.537 -12.755 -1.031 1.00 13.11 O
ATOM 11 H1 HSE A 26 3.422 -10.546 -1.337 1.00 17.07 H
ATOM 12 H2 HSE A ...read more
Source: FULL ARTICLE at The UNIX and Linux Forums

Running a program multiple times to search pattern and assign structure

By bioinfo

Hi all,
I have a big file (n.txt) with following pattern:

Code:

ATOM 1 N SER A 1 122.392 152.261 138.190 1.00 0.00 N
ATOM 2 CA SER A 1 122.726 151.241 139.183 1.00 0.00 C
TER
ENDMDL
ATOM 1 N SER A 1 114.207 142.287 135.439 1.00 0.00 N
ATOM 2 CA SER A 1 113.667 143.509 134.894 1.00 0.00 C
TER
ENDMDL


I am using following script to read pattern and assign structure to them using another program st giving 2 output files-fn.str -m.mol:

Code:

pattern_txt=n.txt
npattern=`grep -c ENDMDL $pattern_txt`
echo $npattern patterns. Assigning_structure:
echo $npattern > st_input
seq -w 1 $npattern >> st_input
st $pattern_txt -fn.str -mn.mol


But this script is reading only first pattern and giving structure of that pattern by running st program. I wish to have structure for all patterns.

Please guide.

Source: FULL ARTICLE at The UNIX and Linux Forums