according to ....
According to this model one would expect to find differentiation into
According to our results this does not seem to occur frequently
No significant differences were observed when results were analyzed according to previous treatment.
As expected, these estimates of probability did not differ according to the results
of the stress test
in terms of
从……方面(说来),按照
The results are analyzed in terms of
this data profile is described in terms of the parameters α and β in eq. (1)
用参数α 和 β 来描述数据
evaluates groups of yeast genes in terms of their annotations in
in the light of
In the light of these changes, we must revise our plan.
鉴于这些变化, 我们必须重新修订我们的计划。
on the basis of
in accordance with the above views
in accordance to
依照, 根据, 与…一致 (law)
In accordance to your request, I am sending you sample pages of the dictionary.
All procedures were performed in accordance to specifications of institutionally approved animal protocols.
Friday, September 4, 2009
由于。。。
as a result, = as the matter of fact == as a consequence.. 因此,所以,想当于so
So, therefore, thus, hence, consequently, as a consequence, accordingly, as a result, because of this, as a result of this
as a result, finally, therefore, accordingly, in short, thus, consequently, in conclusion, so, in brief, in a word
as a result of == as a consequence of
due to
due to the fact that...
So, therefore, thus, hence, consequently, as a consequence, accordingly, as a result, because of this, as a result of this
as a result, finally, therefore, accordingly, in short, thus, consequently, in conclusion, so, in brief, in a word
as a result of == as a consequence of
due to
due to the fact that...
最有可能
the list of most likely candidate genes ...
最可能的候选基因列表
that are most likely to provide valid results
最可能提供矫正结果
This effect is most likely to be mediated by a phosphorylation event
这种效果最可能受到。。事件的调节
those factors that are most likely to be involved in the phenotype
这些因素最有可能参与这个表型
The maximum range and the most possible value of ..
最大范围和最可能的值。。
In this situation, the most possible mechanism seems to be occlusion.
这种情情况下,最有可能的机理好像
The most possible mechanism for explaining this 。。 is ..
解释这种。。。的最大可能机理是。。。
最可能的候选基因列表
that are most likely to provide valid results
最可能提供矫正结果
This effect is most likely to be mediated by a phosphorylation event
这种效果最可能受到。。事件的调节
those factors that are most likely to be involved in the phenotype
这些因素最有可能参与这个表型
The maximum range and the most possible value of ..
最大范围和最可能的值。。
In this situation, the most possible mechanism seems to be occlusion.
这种情情况下,最有可能的机理好像
The most possible mechanism for explaining this 。。 is ..
解释这种。。。的最大可能机理是。。。
Thursday, September 3, 2009
Free MSVC tools + Activestate to compile CPAN Modules
Free MSVC tools + Activestate to compile CPAN Modules
by jZed | Log in | Create a new user | The Monastery Gates | Super Search |
| Seekers of Perl Wisdom | Meditations | PerlMonks Discussion | Snippets |
| Obfuscation | Reviews | Cool Uses For Perl | Perl News | Q&A | Tutorials |
| Code | Poetry | Recent Threads | Newest Nodes | Donate | What's New |
on Aug 31, 2004 at 00:03 UTC ( #387070=perlmeditation: print w/ replies, xml ) Need Help??
update In the YMMV vein, please see shay's Re: Building Perl with the free MSVC tools. The method below will apparently only work for some modules. I tried with DBI, DBD::SQLite, and Text::CSV_XS and they all work fine, so this method is useful for me regardless of what other modules it will or won't work with.
I got a new winXP box and wanted to be able to use perl (well, duh!) and to compile my own versions of CPAN modules without using cygqin bash or purchasing a compiler from Microsoft (not so duh, but not so hard either).
After attempting unsuccessfully to follow Building Perl with the free MSVC tools and through no fault of the excellent advice of corion++, intrepid++, demerphq++, I gave up and tried to just use the free tools to compile modules with activestate perl ... success!
Here's how:
Caution: these are humongous downloards (hundreds of mb). corion has a script which hopefully he'll share to wget just the needed portions. But here's how I did it with the full (*free* as in beer) downloads:
Download and install Microsoft Visual C++ Toolkit 2003
Download and install Microsoft SDK Platform Update
Download and install .NET redistributable
Download and install .NET SDK
Set environment to recognize the bin/lib/inc dirs for all of those (update these assume the default install paths, but see demerphq's points below for reasons you might want to use short path names instead and for alternate ways to set the environment):
@echo off
set MSVC=C:\Program Files\Microsoft Visual C++ Toolkit 2003
set MSSDK=C:\Program Files\Microsoft Visual Studio .NET 2003\Vc7
set Mstools=C:\Program Files\Microsoft SDK
set INCLUDE=%MSVC%\include;%MSSDK%\include;%Mstools%\include
set LIB=%MSVC%\lib;%MSSDK%\lib;%Mstools%\Lib;
set PATH=%MSVC%\bin;%MSSDK%\bin;%Mstools%\Bin;%Mstools%\Bin\WinNT;%PATH%
Download and install the latest (*free as in speech*) perl binary
Download and install (*free as in speech*) cygwin (or just grab the needed tools - gzip, tar, cat, etc.)
You can now use PPM or CPAN.pm or CPANPLUS or nmake to compile and install (many) CPAN modules ... Enjoy!
update : made URLs into links per bart's suggestion
by jZed | Log in | Create a new user | The Monastery Gates | Super Search |
| Seekers of Perl Wisdom | Meditations | PerlMonks Discussion | Snippets |
| Obfuscation | Reviews | Cool Uses For Perl | Perl News | Q&A | Tutorials |
| Code | Poetry | Recent Threads | Newest Nodes | Donate | What's New |
on Aug 31, 2004 at 00:03 UTC ( #387070=perlmeditation: print w/ replies, xml ) Need Help??
update In the YMMV vein, please see shay's Re: Building Perl with the free MSVC tools. The method below will apparently only work for some modules. I tried with DBI, DBD::SQLite, and Text::CSV_XS and they all work fine, so this method is useful for me regardless of what other modules it will or won't work with.
I got a new winXP box and wanted to be able to use perl (well, duh!) and to compile my own versions of CPAN modules without using cygqin bash or purchasing a compiler from Microsoft (not so duh, but not so hard either).
After attempting unsuccessfully to follow Building Perl with the free MSVC tools and through no fault of the excellent advice of corion++, intrepid++, demerphq++, I gave up and tried to just use the free tools to compile modules with activestate perl ... success!
Here's how:
Caution: these are humongous downloards (hundreds of mb). corion has a script which hopefully he'll share to wget just the needed portions. But here's how I did it with the full (*free* as in beer) downloads:
Download and install Microsoft Visual C++ Toolkit 2003
Download and install Microsoft SDK Platform Update
Download and install .NET redistributable
Download and install .NET SDK
Set environment to recognize the bin/lib/inc dirs for all of those (update these assume the default install paths, but see demerphq's points below for reasons you might want to use short path names instead and for alternate ways to set the environment):
@echo off
set MSVC=C:\Program Files\Microsoft Visual C++ Toolkit 2003
set MSSDK=C:\Program Files\Microsoft Visual Studio .NET 2003\Vc7
set Mstools=C:\Program Files\Microsoft SDK
set INCLUDE=%MSVC%\include;%MSSDK%\include;%Mstools%\include
set LIB=%MSVC%\lib;%MSSDK%\lib;%Mstools%\Lib;
set PATH=%MSVC%\bin;%MSSDK%\bin;%Mstools%\Bin;%Mstools%\Bin\WinNT;%PATH%
Download and install the latest (*free as in speech*) perl binary
Download and install (*free as in speech*) cygwin (or just grab the needed tools - gzip, tar, cat, etc.)
You can now use PPM or CPAN.pm or CPANPLUS or nmake to compile and install (many) CPAN modules ... Enjoy!
update : made URLs into links per bart's suggestion
表明
However, the findings of 。。。 suggest that the connection may be more complex.
但是,。。的发现表明这种联系更加复杂。
On the basis of our data, we suggest that
Taken together, these results suggest that
To accomplish this, we suggest that researchers must clearly address
但是,。。的发现表明这种联系更加复杂。
On the basis of our data, we suggest that
Taken together, these results suggest that
To accomplish this, we suggest that researchers must clearly address
是否。。。
Thus, it is reasonable to ask whether 。。。
因此,这是非常合理的来问是否。。
it seemed reasonable to ask whether
leading us to ask whether。。。
it makes sense to ask whether。。。
It may now be insufficient to ask whether
we might ask whether it might be。。
因此,这是非常合理的来问是否。。
it seemed reasonable to ask whether
leading us to ask whether。。。
it makes sense to ask whether。。。
It may now be insufficient to ask whether
we might ask whether it might be。。
矛盾
This apparent paradox has been at least partially explained in recent years through
最近几年,通过。。。 这个明显的矛盾至少部分已经被解释。。。
This paradox may be attributable in part to
这个矛盾部分归因于。。。
One discrepancy between .. and .. remains unexplained.
..和..之间的差异(矛盾)仍没有解释
This discrepancy might be explained by ... results
这种不一致可通过。。结果来解释。
The reason for this discrepancy has never been explained adequately.
这种不一致的原因从来没有足够解释。
This discrepancy could be explained by either 1) 。。。 2)
这种不一致可能通过1)。。2)。。来解释。。
The inconsistent results of association studies in behavioral genetics are usually
explained by the fact that ...
行为遗传学关联研究的不一致结果通常通过。。。事实来解释。
The reason is that the universality of contradiction can be explained more briefly
最近几年,通过。。。 这个明显的矛盾至少部分已经被解释。。。
This paradox may be attributable in part to
这个矛盾部分归因于。。。
One discrepancy between .. and .. remains unexplained.
..和..之间的差异(矛盾)仍没有解释
This discrepancy might be explained by ... results
这种不一致可通过。。结果来解释。
The reason for this discrepancy has never been explained adequately.
这种不一致的原因从来没有足够解释。
This discrepancy could be explained by either 1) 。。。 2)
这种不一致可能通过1)。。2)。。来解释。。
The inconsistent results of association studies in behavioral genetics are usually
explained by the fact that ...
行为遗传学关联研究的不一致结果通常通过。。。事实来解释。
The reason is that the universality of contradiction can be explained more briefly
Subscribe to:
Posts (Atom)