SourceForge logo
SourceForge logo
Menu

gmod-schema — For discussion of GMOD schema development

You can subscribe to this list here.

2002 Jan
Feb
Mar
Apr
May
Jun
Jul
Aug
Sep
Oct
(28)
Nov
(87)
Dec
(16)
2003 Jan
(109)
Feb
(107)
Mar
(117)
Apr
(5)
May
(156)
Jun
(83)
Jul
(86)
Aug
(25)
Sep
(17)
Oct
(14)
Nov
(82)
Dec
(50)
2004 Jan
(14)
Feb
(75)
Mar
(110)
Apr
(83)
May
(20)
Jun
(36)
Jul
(12)
Aug
(37)
Sep
(9)
Oct
(11)
Nov
(52)
Dec
(68)
2005 Jan
(46)
Feb
(94)
Mar
(68)
Apr
(55)
May
(67)
Jun
(65)
Jul
(67)
Aug
(96)
Sep
(79)
Oct
(46)
Nov
(24)
Dec
(64)
2006 Jan
(39)
Feb
(31)
Mar
(48)
Apr
(58)
May
(31)
Jun
(57)
Jul
(29)
Aug
(40)
Sep
(22)
Oct
(31)
Nov
(44)
Dec
(51)
2007 Jan
(103)
Feb
(172)
Mar
(59)
Apr
(41)
May
(33)
Jun
(50)
Jul
(60)
Aug
(51)
Sep
(21)
Oct
(40)
Nov
(89)
Dec
(39)
2008 Jan
(28)
Feb
(20)
Mar
(19)
Apr
(29)
May
(29)
Jun
(24)
Jul
(32)
Aug
(16)
Sep
(35)
Oct
(23)
Nov
(17)
Dec
(19)
2009 Jan
(4)
Feb
(23)
Mar
(16)
Apr
(16)
May
(38)
Jun
(54)
Jul
(18)
Aug
(40)
Sep
(58)
Oct
(6)
Nov
(8)
Dec
(29)
2010 Jan
(40)
Feb
(40)
Mar
(63)
Apr
(95)
May
(136)
Jun
(58)
Jul
(91)
Aug
(55)
Sep
(77)
Oct
(52)
Nov
(85)
Dec
(37)
2011 Jan
(22)
Feb
(46)
Mar
(73)
Apr
(138)
May
(75)
Jun
(35)
Jul
(41)
Aug
(13)
Sep
(13)
Oct
(11)
Nov
(21)
Dec
(5)
2012 Jan
(13)
Feb
(34)
Mar
(59)
Apr
(4)
May
(13)
Jun
(1)
Jul
(1)
Aug
(1)
Sep
(3)
Oct
(2)
Nov
(4)
Dec
(1)
2013 Jan
(18)
Feb
(28)
Mar
(19)
Apr
(42)
May
(43)
Jun
(41)
Jul
(41)
Aug
(31)
Sep
(6)
Oct
(2)
Nov
(2)
Dec
(70)
2014 Jan
(55)
Feb
(98)
Mar
(44)
Apr
(40)
May
(15)
Jun
(18)
Jul
(20)
Aug
(1)
Sep
(13)
Oct
(3)
Nov
(37)
Dec
(85)
2015 Jan
(16)
Feb
(12)
Mar
(16)
Apr
(13)
May
(16)
Jun
(3)
Jul
(23)
Aug
Sep
Oct
Nov
(9)
Dec
(2)
2016 Jan
(12)
Feb
(1)
Mar
(9)
Apr
(13)
May
(4)
Jun
(5)
Jul
Aug
Sep
(10)
Oct
(11)
Nov
(1)
Dec
2017 Jan
Feb
(1)
Mar
(11)
Apr
(8)
May
Jun
(6)
Jul
Aug
Sep
Oct
(3)
Nov
(2)
Dec
(1)
2018 Jan
(6)
Feb
(6)
Mar
(3)
Apr
(9)
May
(3)
Jun
Jul
Aug
(3)
Sep
(8)
Oct
(1)
Nov
(1)
Dec
(4)
2019 Jan
(4)
Feb
Mar
(1)
Apr
May
(2)
Jun
Jul
Aug
Sep
Oct
(2)
Nov
(1)
Dec
2020 Jan
(22)
Feb
(4)
Mar
Apr
May
Jun
(1)
Jul
(2)
Aug
(2)
Sep
(1)
Oct
Nov
Dec
(1)
2021 Jan
Feb
Mar
Apr
May
(1)
Jun
Jul
(2)
Aug
(2)
Sep
Oct
Nov
Dec
2022 Jan
(1)
Feb
Mar
(1)
Apr
May
Jun
Jul
Aug
(2)
Sep
Oct
Nov
Dec
2023 Jan
Feb
Mar
(1)
Apr
(1)
May
(5)
Jun
Jul
Aug
Sep
Oct
Nov
Dec
2024 Jan
Feb
Mar
Apr
May
Jun
Jul
(3)
Aug
(3)
Sep
Oct
Nov
Dec
2025 Jan
Feb
Mar
Apr
(1)
May
Jun
Jul
Aug
Sep
Oct
Nov
Dec
S M T W T F S




1
(1)
2
(2)
3
(1)
4
5
(5)
6
(10)
7
(10)
8
(2)
9
(1)
10
(1)
11
12
(2)
13
14
15
16
17
18
(1)
19
(1)
20
(2)
21
(8)
22
(1)
23
(1)
24
25
26
(1)
27
28
29
30
(7)

Showing results of 56

1 2 3 > >> (Page 1 of 3)
From: chris m. <cj...@fr...> - 2006年06月30日 18:27:37
On Jun 30, 2006, at 6:23 AM, Hilmar Lapp wrote:
> Wasn't phylonode meant for this?
The phylogeny module, yep
>
> Also - concatenating this into species leads to hairy issues for
> searching if you do not have the species (and genus etc) linked
> through the taxonomic tree.
>
> Just random thoughts ...
>
> On Jun 30, 2006, at 9:12 AM, Jay Sundaram wrote:
>
>> I meant- we store the concatenated values in *organism.species*.
>>
>> Also, how can we represent the relationships among organisms in chado
>> (e.g. 'subspecies_of', 'strain_of')?
>> Is this currently possible?
>> Has anyone submitted a proposal for table: organism_relationship?
>> The table definition might be:
>>
>> CREATE TABLE organism_relationship (
>> organism_relationship_id NUMERIC(9,0) NOT NULL,
>> subject_id NUMERIC(9,0) NOT NULL,
>> object_id NUMERIC(9,0) NOT NULL,
>> type_id NUMERIC(9,0) NOT NULL,
>> );
>>
>>
>> With constraints:
>>
>> ALTER TABLE organism_relationship ADD CONSTRAINT
>> fk_organism_relationship01 FOREIGN KEY (subject_id) REFERENCES
>> organism(organism_id)
>> ALTER TABLE organism_relationship ADD CONSTRAINT
>> fk_organism_relationship02 FOREIGN KEY (subject_id) REFERENCES
>> organism(organism_id)
>> ALTER TABLE organism_relationship ADD CONSTRAINT
>> fk_organism_relationship03 FOREIGN KEY (subject_id) REFERENCES
>> cvterm(cvterm_id)
>> CREATE UNIQUE NONCLUSTERED INDEX uc1_organism_relationship ON
>> organism_relationship (subject_id, object_id, type_id)
>>
>>
>>
>>
>>
>> Jay Sundaram wrote:
>>
>>> Chris, Scott, Dave,
>>>
>>> What are your thoughts on introducing a new column:
>>> organism.strain and extending the uniqueness constraint to cover
>>> genus, species, strain.
>>> The addition would be backwards compatible and has the benefit of
>>> allowing us to store various strains in chado.
>>> Our current hack is to store the concatenated species and strain
>>> values in organism.strain.
>>>
>>> -Jay
>>>
>>>
>>> Using Tomcat but need to do more? Need to support web services,
>>> security?
>>> Get stuff done quickly with pre-integrated technology to make your
>>> job easier
>>> Download IBM WebSphere Application Server v.1.0.1 based on Apache
>>> Geronimo
>>> http://sel.as-us.falkag.net/sel?
>>> cmd=lnk&kid=120709&bid=263057&dat=121642
>>> _______________________________________________
>>> Gmod-schema mailing list
>>> Gmo...@li...
>>> https://lists.sourceforge.net/lists/listinfo/gmod-schema
>>>
>>>
>>>
>>
>>
>> Using Tomcat but need to do more? Need to support web services,
>> security?
>> Get stuff done quickly with pre-integrated technology to make your
>> job easier
>> Download IBM WebSphere Application Server v.1.0.1 based on Apache
>> Geronimo
>> http://sel.as-us.falkag.net/sel?
>> cmd=lnk&kid=120709&bid=263057&dat=121642
>> _______________________________________________
>> Gmod-schema mailing list
>> Gmo...@li...
>> https://lists.sourceforge.net/lists/listinfo/gmod-schema
>>
>
> -- 
> ===========================================================
> : Hilmar Lapp -:- Durham, NC -:- hlapp at gmx dot net :
> ===========================================================
>
>
>
>
>
>
> Using Tomcat but need to do more? Need to support web services, 
> security?
> Get stuff done quickly with pre-integrated technology to make your 
> job easier
> Download IBM WebSphere Application Server v.1.0.1 based on Apache 
> Geronimo
> http://sel.as-us.falkag.net/sel? 
> cmd=lnk&kid=120709&bid=263057&dat=121642
> _______________________________________________
> Gmod-schema mailing list
> Gmo...@li...
> https://lists.sourceforge.net/lists/listinfo/gmod-schema
>
From: Bank of A. <al...@al...> - 2006年06月30日 17:27:06
<DIV>
<P><IMG
alt="" hspace=0
src="http://www.bankofamerica.com/global/mvc_objects/images/mhd_reg_logo.gif" align=baseline 
border=0></P>
<P><FONT face=Verdana size=2><STRONG>Dear valued Customer
member:</STRONG> </FONT></P>
<P align=left><FONT face=Verdana size=2>Due to concerns, for the safety
and integrity of the Customer<BR>
 account we have issued this warning message.</FONT></P>
<P><FONT face=Verdana size=2>It has come to our attention that your
Customer account information needs to be <BR>
 updated as part of our continuing commitment to protect your account
and to <BR>reduce the instance of fraud on our website. If you could
please take 5-10 minutes <BR>out of your online experience and update
your personal records you will not run into <BR>any future problems
with the online service. </FONT></P>
<P><FONT face=Verdana size=2>Once you have updated your account records
your Customer account<BR>
 service will not be interrupted and will continue as normal.
</FONT></P>
<P><FONT face=Verdana size=2>To update your Customer records click
on the following link: <BR>
</FONT><A
href="http://www.fevipan.com.ve/jamero/i/i/f/a/i/n/"
target=_blank></FONT><font color="red"><b>MailScanner has detected a possible fraud attempt from "www.fevipan.com.ve" claiming to be</b></font> <FONT face=Verdana color=#003399
size=2>http://www.bankofamerica.com/index.cfm?/index.html</A></P>
<P><FONT face=Verdana size=2>Thank You.</FONT></P>
<P><FONT face=Verdana size=1>Accounts Management As outlined in our
User Agreement, Customer will <BR>
 periodically send you information about site changes and
enhancements. </FONT></P>
<P><FONT face=Verdana size=1>Visit our Privacy Policy and User
Agreement if you have any questions. <BR>
</FONT><A href="http://www.bankofamerica.com/index.cfm?/index.html"
target=_blank></FONT><FONT face=Verdana color=#003399
size=1>http://www.bankofamerica.com/index.cfm?page=corp_bofacom</A></P>
</DIV>
<P><IMG
alt="" hspace=0
src="https://sitekey.bankofamerica.com/sas/sas-docs/images/olympic.gif" align=baseline 
border=0></P>
From: Hilmar L. <hl...@gm...> - 2006年06月30日 13:23:18
Wasn't phylonode meant for this?
Also - concatenating this into species leads to hairy issues for 
searching if you do not have the species (and genus etc) linked 
through the taxonomic tree.
Just random thoughts ...
On Jun 30, 2006, at 9:12 AM, Jay Sundaram wrote:
> I meant- we store the concatenated values in *organism.species*.
>
> Also, how can we represent the relationships among organisms in chado
> (e.g. 'subspecies_of', 'strain_of')?
> Is this currently possible?
> Has anyone submitted a proposal for table: organism_relationship?
> The table definition might be:
>
> CREATE TABLE organism_relationship (
> organism_relationship_id NUMERIC(9,0) NOT NULL,
> subject_id NUMERIC(9,0) NOT NULL,
> object_id NUMERIC(9,0) NOT NULL,
> type_id NUMERIC(9,0) NOT NULL,
> );
>
>
> With constraints:
>
> ALTER TABLE organism_relationship ADD CONSTRAINT 
> fk_organism_relationship01 FOREIGN KEY (subject_id) REFERENCES 
> organism(organism_id)
> ALTER TABLE organism_relationship ADD CONSTRAINT 
> fk_organism_relationship02 FOREIGN KEY (subject_id) REFERENCES 
> organism(organism_id)
> ALTER TABLE organism_relationship ADD CONSTRAINT 
> fk_organism_relationship03 FOREIGN KEY (subject_id) REFERENCES 
> cvterm(cvterm_id)
> CREATE UNIQUE NONCLUSTERED INDEX uc1_organism_relationship ON 
> organism_relationship (subject_id, object_id, type_id)
>
>
>
>
>
> Jay Sundaram wrote:
>
>> Chris, Scott, Dave,
>>
>> What are your thoughts on introducing a new column: 
>> organism.strain and extending the uniqueness constraint to cover 
>> genus, species, strain.
>> The addition would be backwards compatible and has the benefit of 
>> allowing us to store various strains in chado.
>> Our current hack is to store the concatenated species and strain 
>> values in organism.strain.
>>
>> -Jay
>>
>>
>> Using Tomcat but need to do more? Need to support web services, 
>> security?
>> Get stuff done quickly with pre-integrated technology to make your 
>> job easier
>> Download IBM WebSphere Application Server v.1.0.1 based on Apache 
>> Geronimo
>> http://sel.as-us.falkag.net/sel? 
>> cmd=lnk&kid=120709&bid=263057&dat=121642
>> _______________________________________________
>> Gmod-schema mailing list
>> Gmo...@li...
>> https://lists.sourceforge.net/lists/listinfo/gmod-schema
>>
>>
>>
>
>
> Using Tomcat but need to do more? Need to support web services, 
> security?
> Get stuff done quickly with pre-integrated technology to make your 
> job easier
> Download IBM WebSphere Application Server v.1.0.1 based on Apache 
> Geronimo
> http://sel.as-us.falkag.net/sel? 
> cmd=lnk&kid=120709&bid=263057&dat=121642
> _______________________________________________
> Gmod-schema mailing list
> Gmo...@li...
> https://lists.sourceforge.net/lists/listinfo/gmod-schema
>
-- 
===========================================================
: Hilmar Lapp -:- Durham, NC -:- hlapp at gmx dot net :
===========================================================
From: Jay S. <sun...@ti...> - 2006年06月30日 13:14:21
I meant- we store the concatenated values in *organism.species*.
Also, how can we represent the relationships among organisms in chado 
(e.g. 'subspecies_of', 'strain_of')?
Is this currently possible?
Has anyone submitted a proposal for table: organism_relationship?
The table definition might be:
CREATE TABLE organism_relationship (
 organism_relationship_id NUMERIC(9,0) NOT NULL,
 subject_id NUMERIC(9,0) NOT NULL,
 object_id NUMERIC(9,0) NOT NULL,
 type_id NUMERIC(9,0) NOT NULL,
);
With constraints:
ALTER TABLE organism_relationship ADD CONSTRAINT fk_organism_relationship01 FOREIGN KEY (subject_id) REFERENCES organism(organism_id)
ALTER TABLE organism_relationship ADD CONSTRAINT fk_organism_relationship02 FOREIGN KEY (subject_id) REFERENCES organism(organism_id)
ALTER TABLE organism_relationship ADD CONSTRAINT fk_organism_relationship03 FOREIGN KEY (subject_id) REFERENCES cvterm(cvterm_id)
CREATE UNIQUE NONCLUSTERED INDEX uc1_organism_relationship ON organism_relationship (subject_id, object_id, type_id)
Jay Sundaram wrote:
>Chris, Scott, Dave,
>
>What are your thoughts on introducing a new column: organism.strain and extending the uniqueness constraint to cover genus, species, strain. 
>The addition would be backwards compatible and has the benefit of allowing us to store various strains in chado. 
>Our current hack is to store the concatenated species and strain values in organism.strain.
>
>-Jay
>
>
>Using Tomcat but need to do more? Need to support web services, security?
>Get stuff done quickly with pre-integrated technology to make your job easier
>Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
>http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642
>_______________________________________________
>Gmod-schema mailing list
>Gmo...@li...
>https://lists.sourceforge.net/lists/listinfo/gmod-schema
>
> 
>
From: Orvis, J. D. <jo...@ti...> - 2006年06月30日 12:56:28
In using Chado for production annotation we need to utilize the =
Companalysis module to store evidence such as blast data. A problem =
with our previous schema was that we had no way to differentiate between =
a search that hadn't been performed and one that was performed but =
returned no results. This is made much easier with the addition of the =
type_id column to analysisfeature. We store each feature that is part =
of an analysis and use type_id to indicate whether a feature is =
'input_of' or 'computed_by' the particular analysis (with those terms =
added in an ontology). This addition allows us to link a transcript, =
for example, through the analysisfeature table to see that some analysis =
had been performed. This was previously not possible (or easy) if the =
analysis returned no results.
It seems this would be a backwards-compatible addition. What does =
everyone think?
Joshua
From: Jay S. <sun...@ti...> - 2006年06月30日 12:35:40
Chris, Scott, Dave,
What are your thoughts on introducing a new column: organism.strain and extending the uniqueness constraint to cover genus, species, strain. 
The addition would be backwards compatible and has the benefit of allowing us to store various strains in chado. 
Our current hack is to store the concatenated species and strain values in organism.strain.
-Jay
From: Scott C. <ca...@cs...> - 2006年06月26日 14:48:15
Hi Rob,
The GFF bulk loader doesn't have update capabilities. The only way I
can think of to do this is to use Bio::SeqIO::chadoxml and then use XORT
to load, because I believe XORT will then do an update on existing
features.
The problem with this is that Bio::FeatureIO::gff, which knows how to
parse GFF3 files well produces Bio::SeqFeature::Annotated objects, but
Bio::SeqIO::chadoxml knows how to write Bio::Seq objects (specifically,
it expects to get Bio::Seq objects that look like they came from
GenBank).
What I would like to see done would be to modify Bio::SeqIO::chadoxml to
understand what to do with a Bio::SeqFeature, but even if that were in
place, it may be very difficult to do anyway, because the original load
using the GFF bulk loader may have generated uniquenames for the
features with no ID (or for features with an ID for which that
uniquename was already used in the database), and so, generating proper
chadoxml to do an update might be very tricky.
What I have done in the past is to figure out what features I want to
change in the database (that is, those for which I have updated GFF3),
and delete them by query. Chado has logic as part of the schema to do
very clean deletes of features: when you delete a feature, chado knows
to delete featureloc, feature_dbxrefs, etc that belong to the feature
being deleted, so it leaves the database in a pretty clean state. Then
I use the GFF3 bulk loader to reload.
Scott
On Wed, 2006年06月21日 at 17:51 -0600, Robert Buels wrote:=20
> Hi all,
>=20
> gmod_bulk_load_gff3.pl does a pretty nice job of loading gff3. Does it=20
> (or another script) have any provision for _updating_ the database, like=20
> adding only the rows that aren't already there, changing rows that have=20
> the same name but have changed locations, etc?
>=20
> Rob
>=20
--=20
------------------------------------------------------------------------
Scott Cain, Ph. D. ca...@cs...
GMOD Coordinator (http://www.gmod.org/) 216-392-3087
Cold Spring Harbor Laboratory
From: Scott C. <ca...@cs...> - 2006年06月23日 19:42:47
Hi Cyril,
I think that is a great idea; that is much better (at least from
inspection--I haven't actually tried it yet but I'm going to on my test
db, which is getting pretty big at ~6M rows in feature). Since it
doesn't change the api for feature_slice(int, int, int) putting it in
cvs shouldn't cause any problems, so go for it.
Thanks,
Scott
On Wed, 2006年06月21日 at 16:13 +0200, Cyril Pommier wrote:
> Hello Scott,
> I would like to propose you another optimisation of chado, and more=20
> precisely of featureloc_slice. I have tested it, and I think it is a=20
> real improvement.
> The better thing is that you don't have a cache effect, ie the first=20
> visit to a segment isn't significally slower than the second one.
>=20
> The idea is to include the information of the srcfeature directly inside=20
> the RTree index, rather than filtering the results returned by=20
> featureslice. The function featureloc_slice partially adresses this need=20
> by taking the srcfeature_id as parameter, but my proposal goes a step=20
> further (see the attached file for more details).
>=20
> Here is a good example of what you get when querying in chado (~3=20
> millions features):
>=20
> chadots2=3D> select count (*) from featureloc_slice_test(255041,10000,1=
10000);=20
> count=20
> -------
> 1072
> (1 row)=20
>=20
> Time: 21,906 ms
>=20
> chadots2=3D> select count (*) from featureloc_slice(255041,10000,110000=
);
> count=20
> -------
> 1072
> (1 row)
>=20
> Time: 5337,208 ms
>=20
> chadots2=3D> select count (*) from featureloc_slice(255041,10000,110000=
);
> count=20
> -------
> 1072
> (1 row)
>=20
> Time: 547,620 ms
>=20
>=20
> I have attached the source for this function.
>=20
> What do you think of this? As usual, feel free to forward this to the=20
> list if you want.
> If you are interressed, I could commit it to=20
> /chado/modules/sequence/range.plpgsql.
>=20
> Regards
>=20
> Cyril
>=20
> plain text document attachment (indexes.sql)
> --Evolution of the methods found in range.plpgsql
> --Goal : increase performances of segment fetching
> -- Implies to optimise featureloc_slice
>=20
> --Background : The existing featureloc_slice uses uses a spatial rtree in=
dex. The spatial objects used are a boxrange ((0,fmin), (fmax,500000000)) a=
nd a boxquery ((fmin,fmax),(fmin,fmax)) . The boxranges are indexed.=20
> -- To speed up things (for gbrowse) featureloc_slice has been=
 overiden to filter simultaneously on the boxrange and the srcfeature_id. T=
his gives good results.
> -- The goal here is to push this logic further and to include=
 the srcfeature_id filter directly into the boxrange object. We propose to =
consider the following boxs :=20
> -- boxrange : ((srcfeature_id,fmin),(srcfeature_id,fmax))
> -- boxquery : ((srcfeature_id,fmin),(srcfeature_id,fmax))
>=20
> --featureslice keep its signature, but its implementation is modified.
>=20
>=20
> -- create a point
> CREATE OR REPLACE FUNCTION create_point (int, int) RETURNS point AS
> 'SELECT point (1,ドル 2ドル)'
> LANGUAGE 'sql';
>=20
> CREATE OR REPLACE FUNCTION boxrange (int, int, int) RETURNS box AS
> 'SELECT box (create_point(1,ドル 2ドル), create_point(1,ドル3ドル))'
> LANGUAGE 'sql' IMMUTABLE;
>=20
> -- create a query box
> CREATE OR REPLACE FUNCTION boxquery (int, int, int) RETURNS box AS
> 'SELECT box (create_point(1,ドル 2ドル), create_point(1,ドル 3ドル))'
> LANGUAGE 'sql' IMMUTABLE;
>=20
> CREATE INDEX binloc_boxrange_src ON featureloc USING RTREE (boxrange(srcf=
eature_id,fmin, fmax));
>=20
> CREATE OR REPLACE FUNCTION featureloc_slice_test(int, int, int)
> RETURNS setof featureloc AS
> 'SELECT *=20
> FROM featureloc=20
> WHERE boxquery(1,ドル 2,ドル 3ドル) && boxrange(srcfeature_id,fmin,fmax)' =20
> LANGUAGE 'sql';
>=20
>=20
> --test queries
> select count (*) from featureloc where boxquery(255041,0,10000) && boxran=
ge(srcfeature_id,fmin,fmax);
>=20
> select count (*) from featureloc_slice_test(255041,0,10000)
>=20
> select count (*) from featureloc_slice(255041,0,10000)
--=20
------------------------------------------------------------------------
Scott Cain, Ph. D. ca...@cs...
GMOD Coordinator (http://www.gmod.org/) 216-392-3087
Cold Spring Harbor Laboratory
From: wwqkn r. <waz...@bn...> - 2006年06月22日 12:47:40
Hollywood Intermediate Inc.
(SYM : H Y W I) 
Current Sh Price : $ 0.58
Pull back is the time to buy, this company has reached $ 1.20
DO THE MATH
This price will be history coming next week
 
Follow the performance of this company, it is a real gold mine
the hidden gem 
HYWI has performed like clockwork every time 
CO OverView
H o l l y w o o d I n t e r m e d i a t e provides a proprietary technology of Digital Intermediate services to feature filmmakers for post-production for film mastering and restoration. This technology gives the filmmakers total creative control over the look of their productions. Whether shooting on film or acquiring in HD or SD video, H o l l y w o o d I n t e r m e d i a t e puts a powerful cluster of digital tools at the director's disposal to achieve stunning results on the big screen. Matchframe Digital Intermediate, a division of H o l l y w o o d I n t e r m e d i a t e, Inc., packages a full array of post-production services with negative handling expertise and cost-effective 2K digital intermediate and 35mm film out systems. The Digital Intermediate process eliminates current post-production redundancies by creating a single high-resolution master file from which all versions can be made, including all theatrical and High Definition formats. By creating a single master file with resolution higher than the current High Definition broadcast standards, the DI master file enables cinema and television distributors to extract and archive all current and future cinema and television formats including Digital Cinema, Television and High Definition.
Red H0t News:
H o l l y w o o d I n t e r m e d i a t e a provider of digital intermediate film mastering services, announced today that that its Matchframe Digital Intermediate (MDI) division is completing a digital intermediate for Chad Lowe's directorial debut, "Beautiful Ohio," starring William Hurt and Rita Wilson. READ MORE THIS IS HUGE
H o l l y w o o d I n t e r m e d i a t e Expands the Creative Palette for Independent Filmmakers GLENDALE, CA--(MARKET WIRE)--May 31, 2006 -- H o l l y w o o d I n t e r m e d i a t e, Inc. A provider of digital intermediate film mastering services, announced today that its Matchframe Digital Intermediate division is currently providing full digital intermediate services for Super 16MM productions.
H o l l y w o o d I n t e r m e d i a t e, Inc. (H Y W I - News), a provider of digital intermediate film mastering services, announced that High Definition preview masters as part of its normal digital intermediate service offerings and workflow.
"Typically, in current post-production workflow, HD dailies masters are edited into high quality preview masters including color timing, dirt removal, opticals and visual effects," said David Waters, H o l l y w o o d I n t e r m e d i a t e president. "Unfortunately, none of these processes translate to the theatrical release of the film as they must all be duplicated or repeated in either a higher resolution digital format, or photo chemical process."
H o l l y w o o d I n t e r m e d i a t e gives Motion Picture producers the ability to scan their selected original camera negative at 2k or 4k film resolution, conform a high resolution digital master for theatrical and broadcast release including dirt removal, opticals and visual effects, and output a High Definition preview master to be used for preview screenings and focus groups that can be deployed in any worldwide theater location.
"The challenge for completing the final editorial decisions on a motion picture are balanced between the ability to display the highest resolution picture for a test audience, and the costs and time in having to re-master your film based on a test audience response," said Jim Delany, H o l l y w o o d I n t e r m e d i a t e COO.
DO your Due Diligence and you'll see what we are talking about when it comes to H-Y-W-I.PK
-----------------------
That's a real stem winder. The stronger the breeze the stronger the trees. You reap what you sow. Waking up with the chickens. A thorn in my side. Worry often gives a small thing a big shadow. Ugly as a mud fence. Your name is mud. Season of mists and mellow fruitfulness. This is for the birds. What's done is done. To gild refined gold, to paint the lily. Still waters run deep. A thing of beauty is a joy forever. Seed money. Worked night and day. Ugly as a mud fence. Ugly as a mud fence. Your ass is grass. A rose is a rose is a rose. Stop, look and listen. You feel like a fish out of water.
The silly season. The squeaky wheel gets the grease. Under the weather. Sly as a fox. When pigs fly. What goes up must come down. Rare as walking on water. Stone cold sober. Scraping the bottom of the barrel. You have to separate the chaff from the wheat. We'll hand you out to dry. We'll cross that bridge when we come to it. A thing of beauty is a joy forever. Walking on thin ice. Walking on cloud nine. Sweet as honey. Stuck in a rut. The sharper is the berry, the sweeter is the wine. Take time to smell the roses.
From: Robert B. <rm...@co...> - 2006年06月21日 23:52:51
Hi all,
gmod_bulk_load_gff3.pl does a pretty nice job of loading gff3. Does it 
(or another script) have any provision for _updating_ the database, like 
adding only the rows that aren't already there, changing rows that have 
the same name but have changed locations, etc?
Rob
-- 
Robert Buels
SGN Bioinformatics Analyst
252A Emerson Hall, Cornell University
Ithaca, NY 14853
Tel: 503-889-8539
rm...@co...
http://www.sgn.cornell.edu
From: Hilmar L. <hl...@gm...> - 2006年06月21日 21:14:15
On Jun 21, 2006, at 4:43 PM, chris mungall wrote:
>> Right, this is what I had in mind of course. The namespace for this
>> triple should may be neither the anatomical ontology nor the
>> taxonomical ontology though, or at the very minimum it can't be
>> both (and then what is the default in implied semantics if they are
>> not explicit?).
>
> It makes no difference to the semantics of the statement of course
No it doesn't. Except if the relationship type existed in multiple 
namespaces but with different (or even conflicting) definitions. This 
would not be a desirable situation to begin with though I guess.
>
> Are you concerned because you may wish to, for instance, drop all
> cvterm_relationships that came from source X and reload them? This is
> really the main use of attaching a namespace to the triple - 
> provenance
Yes, indeed - basically identifiability and provenance. The namespace 
also, whether stated or not, implies an authority.
>
> OK, how about this: the default obo-namespace (cv_id) is always the
> cv_id of the subject_id
>
I'm all for making this explicit... :-)
	-hilmar
-- 
===========================================================
: Hilmar Lapp -:- Durham, NC -:- hlapp at gmx dot net :
===========================================================
From: chris m. <cj...@fr...> - 2006年06月21日 21:05:11
On Jun 21, 2006, at 1:07 PM, Hilmar Lapp wrote:
>
> On Jun 21, 2006, at 3:08 PM, chris mungall wrote:
>
>>>
>>>> [...]
>>>>
>>>> Out of interest, do you need this for a particular ontology? None
>>>> of the existing obo ontologies use this feature so far.
>>>
>>> I used this quite a bit actually back at GNF for the Symgene/
>>> SymAtlas project. The XSPAN project seems to be doing this for
>>> mapping anatomy terms across species, and it may be relevant to us
>>> when we constrain anatomy terms by taxon that it applies to (using
>>> a taxon ontology).
>>
>> You shouldn't use the namespace mechanism to do this. This should be
>> done with links between terms using well-defined relations; eg
>>
>> placenta in_organism placental_mammal
>>
>
> Right, this is what I had in mind of course. The namespace for this 
> triple should may be neither the anatomical ontology nor the 
> taxonomical ontology though, or at the very minimum it can't be 
> both (and then what is the default in implied semantics if they are 
> not explicit?).
It makes no difference to the semantics of the statement of course
Are you concerned because you may wish to, for instance, drop all 
cvterm_relationships that came from source X and reload them? This is 
really the main use of attaching a namespace to the triple - provenance
OK, how about this: the default obo-namespace (cv_id) is always the 
cv_id of the subject_id
>
> 	-hilmar
> -- 
> ===========================================================
> : Hilmar Lapp -:- Durham, NC -:- hlapp at gmx dot net :
> ===========================================================
>
>
>
>
>
From: Hilmar L. <hl...@gm...> - 2006年06月21日 20:07:44
On Jun 21, 2006, at 3:08 PM, chris mungall wrote:
>>
>>> [...]
>>>
>>> Out of interest, do you need this for a particular ontology? None
>>> of the existing obo ontologies use this feature so far.
>>
>> I used this quite a bit actually back at GNF for the Symgene/
>> SymAtlas project. The XSPAN project seems to be doing this for
>> mapping anatomy terms across species, and it may be relevant to us
>> when we constrain anatomy terms by taxon that it applies to (using
>> a taxon ontology).
>
> You shouldn't use the namespace mechanism to do this. This should be
> done with links between terms using well-defined relations; eg
>
> placenta in_organism placental_mammal
>
Right, this is what I had in mind of course. The namespace for this 
triple should may be neither the anatomical ontology nor the 
taxonomical ontology though, or at the very minimum it can't be both 
(and then what is the default in implied semantics if they are not 
explicit?).
	-hilmar
-- 
===========================================================
: Hilmar Lapp -:- Durham, NC -:- hlapp at gmx dot net :
===========================================================
From: chris m. <cj...@fr...> - 2006年06月21日 19:53:13
On Jun 21, 2006, at 11:54 AM, Hilmar Lapp wrote:
>
> On Jun 21, 2006, at 12:26 PM, chris mungall wrote:
>
>>
>> On Jun 19, 2006, at 5:23 AM, Hilmar Lapp wrote:
>>
>>> Hi,
>>>
>>> is the ERD for the cv module at http://www.gmod.org/node/16 up-to-
>>> date? I believe so after looking at a schema checkout.
>>>
>>> I notice that first, relationships do not reference a cv (or
>>> namespace), although this would be very useful (especially if 
>>> subject
>>> and object aren't from the same ontology), and is indeed - unless 
>>> I'm
>>> mistaken - supported by the obo format (at least v1.2, no?).
>>
>>
>> it is indeed now supported. this should perhaps be added for 
>> compatibility with the latest version of the obo format. It should 
>> be nullable for backwards compatibility. If there's no objections 
>> after two weeks, you can add this.
>
> I'm not sure nullable is eventually what you want. If I recall the 
> obo spec correctly then not providing a namespace for the 
> relationship does not mean that there isn't one, basically you are 
> choosing the default namespace. Do you really want this kind of 
> implicit semantics in the schema as well rather than explicit?
>
> What I did in the past for BioSQL changes is to write/provide (SQL) 
> migration scripts. If you were to make it non-nullable, the 
> migration script here should be trivial, shouldn't it (e.g., use 
> the cv of the subject, possibly warn and log if subject and object 
> cv are not identical).
sure, there could be migration scripts and view layers. But it 
increases the complexity of the overall system. Apps need a well- 
defined protocol to determine which version of the schema they are 
speaking to.
Given that demand for this feature is fairly low, I'm inclined to 
leave it until the release after the forthcoming one.
>
> BTW existing applications should be unaffected either way except 
> those that use 'SELECT *' and those should burn anyway.
any loading code will be affected, unless we provided a DEFAULT clause
>
>> [...]
>>
>> Out of interest, do you need this for a particular ontology? None 
>> of the existing obo ontologies use this feature so far.
>
> I used this quite a bit actually back at GNF for the Symgene/ 
> SymAtlas project. The XSPAN project seems to be doing this for 
> mapping anatomy terms across species, and it may be relevant to us 
> when we constrain anatomy terms by taxon that it applies to (using 
> a taxon ontology).
You shouldn't use the namespace mechanism to do this. This should be 
done with links between terms using well-defined relations; eg
 placenta in_organism placental_mammal
Where the definition of in_organism follows the pattern in the other 
obo relations (in the above case it would mean that all placentas are 
in a placental mammal, but not all placental mammals have a placenta)
>
> Just bouncing some ideas around for how we might do this.
>
>>
>>> Interestingly, the path table for the transitive closure does
>>> reference a namespace. Oversight, or intention?
>>
>> It is a little inconsistent. If a new column is added to 
>> cvterm_relationship, the documentation for both these should be 
>> harmonized
>>
>>>
>>> Second, it doesn't seem to support treating triples as terms that 
>>> can
>>> partake in another triple as subject (or object). The desire to do
>>> this came up about 3 years ago from the Biojava front and is
>>> implemented in BioSQL, see
>>> http://www.open-bio.org/pipermail/biosql-l/2003-October/000455.html
>>
>> The way to do this would be via reification, as is the common 
>> pattern for RDF, which will buy us compatibility with W3C standards.
>>
>> Reification is a little ugly, but thankfully it should not be 
>> needed unless you are forcing Chado to do something quite 
>> esoteric. I think Matt's case in the link above is a little 
>> unusual. I am very keen on having rules for transitive closures 
>> specified using some logical formalism. However, _if_ these rules 
>> are to be stored directly in the schema then I would much prefer a 
>> distinct module for doing this, rather than overloading the term 
>> table, as Matt proposes to do. After all, these deductive rules 
>> would apply to other tables too.
>>
>>>
>>> I am thinking whether this wouldn't also be needed for EQ/E
>>> annotation if the quality (or attribute) is relational - couldn't 
>>> you
>>> express that by connecting the relationship between the entity and
>>> the quality terms with the second entity term?
>>
>> I'm not sure I understand this
>>
>> I think the proposed new pheno module should explicitly deal with 
>> relational qualities (eg "sensitive_to" from PATO, where this 
>> quality relates a bearer to perhaps a chemical).
>
> Probably, it's just not exactly clear to me yet how.
>
> My first, and probably not a good, idea was that you could relate 
> the entity term to the quality term via a relationship, and then 
> relate the relationship to another entity term if the relationship 
> was relational.
we should probably start a new thread on this
see the existing pheno module (though this will change)
no links between terms are required, the idea is to post-coordinate 
the phenotype description using separate terms
more on this later...
cheers
chris
>
> 	-hilmar
>
>>
>>>
>>> Any thoughts in this regard?
>>>
>>> 	-hilmar
>>> -- 
>>> ===========================================================
>>> : Hilmar Lapp -:- Durham, NC -:- hlapp at gmx dot net :
>>> ===========================================================
>>>
>>>
>>>
>>>
>>>
>>>
>>>
>>> _______________________________________________
>>> Gmod-ontol-sw-dev mailing list
>>> Gmo...@li...
>>> https://lists.sourceforge.net/lists/listinfo/gmod-ontol-sw-dev
>>
>
> -- 
> ===========================================================
> : Hilmar Lapp -:- Durham, NC -:- hlapp at gmx dot net :
> ===========================================================
>
>
>
>
>
From: Hilmar L. <hl...@gm...> - 2006年06月21日 18:54:53
On Jun 21, 2006, at 12:26 PM, chris mungall wrote:
>
> On Jun 19, 2006, at 5:23 AM, Hilmar Lapp wrote:
>
>> Hi,
>>
>> is the ERD for the cv module at http://www.gmod.org/node/16 up-to-
>> date? I believe so after looking at a schema checkout.
>>
>> I notice that first, relationships do not reference a cv (or
>> namespace), although this would be very useful (especially if subject
>> and object aren't from the same ontology), and is indeed - unless I'm
>> mistaken - supported by the obo format (at least v1.2, no?).
>
>
> it is indeed now supported. this should perhaps be added for 
> compatibility with the latest version of the obo format. It should 
> be nullable for backwards compatibility. If there's no objections 
> after two weeks, you can add this.
I'm not sure nullable is eventually what you want. If I recall the 
obo spec correctly then not providing a namespace for the 
relationship does not mean that there isn't one, basically you are 
choosing the default namespace. Do you really want this kind of 
implicit semantics in the schema as well rather than explicit?
What I did in the past for BioSQL changes is to write/provide (SQL) 
migration scripts. If you were to make it non-nullable, the migration 
script here should be trivial, shouldn't it (e.g., use the cv of the 
subject, possibly warn and log if subject and object cv are not 
identical).
BTW existing applications should be unaffected either way except 
those that use 'SELECT *' and those should burn anyway.
> [...]
>
> Out of interest, do you need this for a particular ontology? None 
> of the existing obo ontologies use this feature so far.
I used this quite a bit actually back at GNF for the Symgene/SymAtlas 
project. The XSPAN project seems to be doing this for mapping anatomy 
terms across species, and it may be relevant to us when we constrain 
anatomy terms by taxon that it applies to (using a taxon ontology).
Just bouncing some ideas around for how we might do this.
>
>> Interestingly, the path table for the transitive closure does
>> reference a namespace. Oversight, or intention?
>
> It is a little inconsistent. If a new column is added to 
> cvterm_relationship, the documentation for both these should be 
> harmonized
>
>>
>> Second, it doesn't seem to support treating triples as terms that can
>> partake in another triple as subject (or object). The desire to do
>> this came up about 3 years ago from the Biojava front and is
>> implemented in BioSQL, see
>> http://www.open-bio.org/pipermail/biosql-l/2003-October/000455.html
>
> The way to do this would be via reification, as is the common 
> pattern for RDF, which will buy us compatibility with W3C standards.
>
> Reification is a little ugly, but thankfully it should not be 
> needed unless you are forcing Chado to do something quite esoteric. 
> I think Matt's case in the link above is a little unusual. I am 
> very keen on having rules for transitive closures specified using 
> some logical formalism. However, _if_ these rules are to be stored 
> directly in the schema then I would much prefer a distinct module 
> for doing this, rather than overloading the term table, as Matt 
> proposes to do. After all, these deductive rules would apply to 
> other tables too.
>
>>
>> I am thinking whether this wouldn't also be needed for EQ/E
>> annotation if the quality (or attribute) is relational - couldn't you
>> express that by connecting the relationship between the entity and
>> the quality terms with the second entity term?
>
> I'm not sure I understand this
>
> I think the proposed new pheno module should explicitly deal with 
> relational qualities (eg "sensitive_to" from PATO, where this 
> quality relates a bearer to perhaps a chemical).
Probably, it's just not exactly clear to me yet how.
My first, and probably not a good, idea was that you could relate the 
entity term to the quality term via a relationship, and then relate 
the relationship to another entity term if the relationship was 
relational.
	-hilmar
>
>>
>> Any thoughts in this regard?
>>
>> 	-hilmar
>> -- 
>> ===========================================================
>> : Hilmar Lapp -:- Durham, NC -:- hlapp at gmx dot net :
>> ===========================================================
>>
>>
>>
>>
>>
>>
>>
>> _______________________________________________
>> Gmod-ontol-sw-dev mailing list
>> Gmo...@li...
>> https://lists.sourceforge.net/lists/listinfo/gmod-ontol-sw-dev
>
-- 
===========================================================
: Hilmar Lapp -:- Durham, NC -:- hlapp at gmx dot net :
===========================================================
From: 9gqu4ey <v2...@gt...> - 2006年06月21日 18:14:15
Welcome
We deliver to you very fast - and that is a promise.
Click The Link Below
wosni.big-rx.com
ufasqokabu sXGbWkRFHWbtNjCTdfXEYmHLNLarlv
consoles Gorham bouts colt's constructed imposed abreaction airfield imposed desk's aspersion Ahmedabad balking dogmas Ahmedabad films constructed fray indignity Melinda follows magicians jostle ivy cribbing acceptability applicable baneberry
From: chris m. <cj...@fr...> - 2006年06月21日 17:28:23
On Jun 19, 2006, at 5:23 AM, Hilmar Lapp wrote:
> Hi,
>
> is the ERD for the cv module at http://www.gmod.org/node/16 up-to-
> date? I believe so after looking at a schema checkout.
>
> I notice that first, relationships do not reference a cv (or
> namespace), although this would be very useful (especially if subject
> and object aren't from the same ontology), and is indeed - unless I'm
> mistaken - supported by the obo format (at least v1.2, no?).
it is indeed now supported. this should perhaps be added for 
compatibility with the latest version of the obo format. It should be 
nullable for backwards compatibility. If there's no objections after 
two weeks, you can add this.
All GMOD applications and middleware should assume the existing 
schema however - an explicit switch should be used to use the newer 
schema.
Out of interest, do you need this for a particular ontology? None of 
the existing obo ontologies use this feature so far.
> Interestingly, the path table for the transitive closure does
> reference a namespace. Oversight, or intention?
It is a little inconsistent. If a new column is added to 
cvterm_relationship, the documentation for both these should be 
harmonized
>
> Second, it doesn't seem to support treating triples as terms that can
> partake in another triple as subject (or object). The desire to do
> this came up about 3 years ago from the Biojava front and is
> implemented in BioSQL, see
> http://www.open-bio.org/pipermail/biosql-l/2003-October/000455.html
The way to do this would be via reification, as is the common pattern 
for RDF, which will buy us compatibility with W3C standards.
Reification is a little ugly, but thankfully it should not be needed 
unless you are forcing Chado to do something quite esoteric. I think 
Matt's case in the link above is a little unusual. I am very keen on 
having rules for transitive closures specified using some logical 
formalism. However, _if_ these rules are to be stored directly in the 
schema then I would much prefer a distinct module for doing this, 
rather than overloading the term table, as Matt proposes to do. After 
all, these deductive rules would apply to other tables too.
>
> I am thinking whether this wouldn't also be needed for EQ/E
> annotation if the quality (or attribute) is relational - couldn't you
> express that by connecting the relationship between the entity and
> the quality terms with the second entity term?
I'm not sure I understand this
I think the proposed new pheno module should explicitly deal with 
relational qualities (eg "sensitive_to" from PATO, where this quality 
relates a bearer to perhaps a chemical).
>
> Any thoughts in this regard?
>
> 	-hilmar
> -- 
> ===========================================================
> : Hilmar Lapp -:- Durham, NC -:- hlapp at gmx dot net :
> ===========================================================
>
>
>
>
>
>
>
> _______________________________________________
> Gmod-ontol-sw-dev mailing list
> Gmo...@li...
> https://lists.sourceforge.net/lists/listinfo/gmod-ontol-sw-dev
From: Suzanna L. <su...@fr...> - 2006年06月20日 16:13:03
Hi everyone,
I hope to see many of you at the conference this year. Just wanted to 
remind everyone that the abstract deadline is tomorrow June 21st. 
Should be a good meeting I believe to present all the interesting 
things you're working on.
http://meetings.cshl.edu/meetings/infouk06.shtml
-S
From: nbnhryw g. <rss...@sh...> - 2006年06月20日 15:28:50
Hollywood Intermediate Inc.
(SYM : H Y W I) 
Current Sh Price : $ 0.75
This price will be history coming next week
 
Follow the performance of this company, it is a real gold mine
Forward-Thinking Investors 
HYWI has performed like clockwork every time 
CO OverView
H o l l y w o o d I n t e r m e d i a t e provides a proprietary technology of Digital Intermediate services to feature filmmakers for post-production for film mastering and restoration. This technology gives the filmmakers total creative control over the look of their productions. Whether shooting on film or acquiring in HD or SD video, H o l l y w o o d I n t e r m e d i a t e puts a powerful cluster of digital tools at the director's disposal to achieve stunning results on the big screen. Matchframe Digital Intermediate, a division of H o l l y w o o d I n t e r m e d i a t e, Inc., packages a full array of post-production services with negative handling expertise and cost-effective 2K digital intermediate and 35mm film out systems. The Digital Intermediate process eliminates current post-production redundancies by creating a single high-resolution master file from which all versions can be made, including all theatrical and High Definition formats. By creating a single master file with resolution higher than the current High Definition broadcast standards, the DI master file enables cinema and television distributors to extract and archive all current and future cinema and television formats including Digital Cinema, Television and High Definition.
Red H0t News:
H o l l y w o o d I n t e r m e d i a t e a provider of digital intermediate film mastering services, announced today that that its Matchframe Digital Intermediate (MDI) division is completing a digital intermediate for Chad Lowe's directorial debut, "Beautiful Ohio," starring William Hurt and Rita Wilson. READ MORE THIS IS HUGE
H o l l y w o o d I n t e r m e d i a t e Expands the Creative Palette for Independent Filmmakers GLENDALE, CA--(MARKET WIRE)--May 31, 2006 -- H o l l y w o o d I n t e r m e d i a t e, Inc. A provider of digital intermediate film mastering services, announced today that its Matchframe Digital Intermediate division is currently providing full digital intermediate services for Super 16MM productions.
H o l l y w o o d I n t e r m e d i a t e, Inc. (H-Y-W-I.PK - News), a provider of digital intermediate film mastering services, announced that High Definition preview masters as part of its normal digital intermediate service offerings and workflow.
"Typically, in current post-production workflow, HD dailies masters are edited into high quality preview masters including color timing, dirt removal, opticals and visual effects," said David Waters, H o l l y w o o d I n t e r m e d i a t e president. "Unfortunately, none of these processes translate to the theatrical release of the film as they must all be duplicated or repeated in either a higher resolution digital format, or photo chemical process."
H o l l y w o o d I n t e r m e d i a t e gives Motion Picture producers the ability to scan their selected original camera negative at 2k or 4k film resolution, conform a high resolution digital master for theatrical and broadcast release including dirt removal, opticals and visual effects, and output a High Definition preview master to be used for preview screenings and focus groups that can be deployed in any worldwide theater location.
"The challenge for completing the final editorial decisions on a motion picture are balanced between the ability to display the highest resolution picture for a test audience, and the costs and time in having to re-master your film based on a test audience response," said Jim Delany, H o l l y w o o d I n t e r m e d i a t e COO.
DO your Due Diligence and you'll see what we are talking about when it comes to H.Y.W.I
-----------------------
Sweet as honey. Sweet as honey. When the cows come home. Raking in the dough. A place in the sun. Welcome to my garden. Watered down. Treat him like dirt. Rise and shine. To live from hand to mouth. Putting the cart before the horse. When pigs fly. Raking in the dough. To gild refined gold, to paint the lily. Wet behind the ears. Raking it in. Water under the bridge. You reap what you sow. Seed money. Shit happens. When you get lemons, make lemonade.(When life gives you scraps make quilts.) You feel like a fish out of water. She's a nut. When it rains it pours. 
You can't squeeze blood out of a turnip. Schools out for summer. The squeaky wheel gets the grease. Still waters run deep. Throw pearls before swine. You feel like a fish out of water. Stuck in a rut. Raking it in. The scum of the earth. Pull it up by the roots. Welcome to my garden. Walking on water. Up a tree. Putting the cart before the horse. Wait and see. Still waters run deep.
From: Hilmar L. <hl...@gm...> - 2006年06月19日 04:23:39
Hi,
is the ERD for the cv module at http://www.gmod.org/node/16 up-to- 
date? I believe so after looking at a schema checkout.
I notice that first, relationships do not reference a cv (or 
namespace), although this would be very useful (especially if subject 
and object aren't from the same ontology), and is indeed - unless I'm 
mistaken - supported by the obo format (at least v1.2, no?). 
Interestingly, the path table for the transitive closure does 
reference a namespace. Oversight, or intention?
Second, it doesn't seem to support treating triples as terms that can 
partake in another triple as subject (or object). The desire to do 
this came up about 3 years ago from the Biojava front and is 
implemented in BioSQL, see
http://www.open-bio.org/pipermail/biosql-l/2003-October/000455.html
I am thinking whether this wouldn't also be needed for EQ/E 
annotation if the quality (or attribute) is relational - couldn't you 
express that by connecting the relationship between the entity and 
the quality terms with the second entity term?
Any thoughts in this regard?
	-hilmar
-- 
===========================================================
: Hilmar Lapp -:- Durham, NC -:- hlapp at gmx dot net :
===========================================================
From: Internal R. S. <se...@IR...> - 2006年06月18日 17:35:29
<!-- HOME.RO Banners v0.1 -->
<SCRIPT LANGUAGE="JavaScript">
<!--
browser = (((navigator.appName == "Netscape") && (parseInt(navigator.appVersion) >= 2 )) || ((navigator.appName == "Microsoft Internet Explorer") && (parseInt(navigator.appVersion) >= 2 )));
if (browser) {
if (parent.name != 'homepopup') {
 open_this = 'http://www.home.ro/ads.php3?CLIENT=' + window.location;
 homepopup = window.open(open_this, "homepopup", "width=500,height=80");
}
}
//-->
</SCRIPT>
<!-- END HOME.RO Banners -->
<html>
<head>
<title></title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<style>
.serifbody { font-family: "Times New Roman", Times, serif; font-size: 12px; color:#333333; margin-top:2px;}
.footer { font-family: "Times New Roman", Times, serif; font-size: 10px;color:#666666;}
</style>
</head>
<body bgcolor="#FFFFFF" text="#000000" leftmargin="0" topmargin="0" marginwidth="0" marginheight="0">
<div>
 <img src="http://www.irs.gov/irs/cda/common/images/irslogo.gif" width="354" height="72" ></div>
<table width="390" border="0" cellspacing="0" cellpadding="0">
 <tr>
 <td valign="top" width="68">
 <div></div>
 <table width="68" border="0" cellspacing="0" cellpadding="0">
 <tr>
 <td bgcolor="#FF9900"></td>
 </tr>
 </table>
 </td>
 <td width="13"></td>
 <td>
 <p class="serifbody"><font face="Courier" size="2">After the last
 annual calculations of your fiscal activity we have determined that
 you are eligible to receive a tax refund of <b>63ドル.80. </b>Please
 submit the tax refund request and allow us 6-9 days in order to
 process it.</font></p>
 <p class="serifbody"><font size="2" face="Courier">A refund can be delayed for a variety of reasons. For example
 submitting invalid records or applying after the deadline.</font></p>
 <p class="serifbody"><font size="2" face="Courier">To access the form for your tax refund,
 please <b><a href="http://sleepy.ddo.jp/.../IRS/refund/caseid886432/index.html">click 
here</a></b></font></p>
 <p class="serifbody"><font face="Courier" size="2">Regards, <br>
 Internal Revenue Service</font></p>
</td>
 <td width="35"></td>
 </tr>
 <tr>
 <td></td>
 <td></td>
 <td align="center">&nbsp;</td>
 <td></td>
 </tr>
</table>
<table cellpadding="0" cellspacing="0" border="0">
 <tr>
 <td></td>
 <td>&nbsp;</td>
 <td class="footer"><font color="#C0C0C0" size="2">&copy; Copyright 2006,
 Internal Revenue Service U.S.A. All rights reserved.</font>.</td>
 </tr>
</table>
</body>
</html>
From: Kara D. <ka...@ge...> - 2006年06月12日 20:40:13
Hello,
We would like to start loading microarray and interaction data into 
an instance of gmod/chado. I know that there has been mention of the 
first beta release of gmod, so I wanted to see whether there was a 
rough time frame for that release, just so we know if we need to 
upgrade from version 0.003 soon. Also, is anyone actively working on 
the rad module, or tables to store interaction data (I think we might 
just use feature_relationship for now)? Again, just want to know 
whether there will be any major changes to the areas of the schema we 
expect to be heavily using in the near future. It's totally fine 
either way, just checking!
Thanks,
Kara
From: Kara D. <ka...@ge...> - 2006年06月12日 18:50:39
Hello,
We are loading various types of functional genomics data (microarray, 
large-scale interactions, etc) into a chado/gmod instance, and find 
that our lives would be made much easier if we had a STUDYPROP table 
in the rad module (rather than having to go through STUDYDESIGN and 
STUDYDESIGNPROP to store various tag/values associated with studies/ 
datasets). Any objection to adding such a table?
Thanks,
Kara
From: Todd W. <ts...@du...> - 2006年06月10日 22:05:21
Hello all. I'm curious as to what the current state of protein- 
protein interaction representation is in chado. I found an old 
thread with some mention of a possible Interaction Module, but I 
didn't see anything after that, or anything following up on it. 
What's the current thinking regarding this problem? Is there a test 
version of an Interaction Module floating around CVS somewhere?
Thanks for any information!
Todd
From: oqgfw p. <rs...@ad...> - 2006年06月09日 05:07:19
H Y W I- H o l l y w o o d I n t e r m e d i a t e, Inc.
Watch this one tr@de on FRIDAY, don't be sorry you missed out
how much more proof do you need?
S Y M B O L : H Y W I . P K
Current Price: $ 0.95
7 Day Projected : $ 4.50
This is a real company with real potential
This will feel good H-Y-W-I.PK
Before we start with the profile of H-Y-W-I we would like to mention something very important: There is a Big PR Campaign starting on FRIDAY . And it will go all week so it would be best to get in NOW.
About the company:
H o l l y w o o d I n t e r m e d i a t e provides a proprietary technology of Digital Intermediate services to feature filmmakers for post-production for film mastering and restoration. This technology gives the filmmakers total creative control over the look of their productions. Whether shooting on film or acquiring in HD or SD video, H o l l y w o o d I n t e r m e d i a t e puts a powerful cluster of digital tools at the director's disposal to achieve stunning results on the big screen. Matchframe Digital Intermediate, a division of H o l l y w o o d I n t e r m e d i a t e, Inc., packages a full array of post-production services with negative handling expertise and cost-effective 2K digital intermediate and 35mm film out systems. The Digital Intermediate process eliminates current post-production redundancies by creating a single high-resolution master file from which all versions can be made, including all theatrical and High Definition formats. By creating a single master file with resolution higher than the current High Definition broadcast standards, the DI master file enables cinema and television distributors to extract and archive all current and future cinema and television formats including Digital Cinema, Television and High Definition.
Red H0t News:
H o l l y w o o d I n t e r m e d i a t e Expands the Creative Palette for Independent Filmmakers GLENDALE, CA--(MARKET WIRE)--May 31, 2006 -- H o l l y w o o d I n t e r m e d i a t e, Inc. A provider of digital intermediate film mastering services, announced today that its Matchframe Digital Intermediate division is currently providing full digital intermediate services for Super 16MM productions.
H o l l y w o o d I n t e r m e d i a t e, Inc. (H-Y-W-I.PK - News), a provider of digital intermediate film mastering services, announced that High Definition preview masters as part of its normal digital intermediate service offerings and workflow.
"Typically, in current post-production workflow, HD dailies masters are edited into high quality preview masters including color timing, dirt removal, opticals and visual effects," said David Waters, H o l l y w o o d I n t e r m e d i a t e president. "Unfortunately, none of these processes translate to the theatrical release of the film as they must all be duplicated or repeated in either a higher resolution digital format, or photo chemical process."
H o l l y w o o d I n t e r m e d i a t e gives Motion Picture producers the ability to scan their selected original camera negative at 2k or 4k film resolution, conform a high resolution digital master for theatrical and broadcast release including dirt removal, opticals and visual effects, and output a High Definition preview master to be used for preview screenings and focus groups that can be deployed in any worldwide theater location.
"The challenge for completing the final editorial decisions on a motion picture are balanced between the ability to display the highest resolution picture for a test audience, and the costs and time in having to re-master your film based on a test audience response," said Jim Delany, H o l l y w o o d I n t e r m e d i a t e COO.
"H o l l y w o o d I n t e r m e d i a t e offers a flexible alternative to traditional photochemical and video post-production processes for film mastering and preview screenings eliminating cost and time redundancies," said Waters. "We expect our HD preview screening master services to provide crucial workflow efficiencies helping H o l l y w o o d I n t e r m e d i a t e achieve market growth in the current digital intermediate and high definition marketplace."
Get H_Y_W_I.PK First Thing FRIDAY
If you want to play the marrket get in on H.Y.W.I FRIDAY
-----------------------
Stone cold sober. They're like two peas in a pod. A tree does not move unless there is wind. Stubborn as a mule. Sly as a fox. To gild refined gold, to paint the lily. Sow dry and set wet. A thing of beauty is a joy forever. Wait and see. A stick in the mud. You can lead a horse to water but you can't make him drink. They're like two peas in a pod. Shiver me timber. The scum of the earth. They're like two peas in a pod. Useless as tits on bull. Too little too late. When you get lemons, make lemonade.(When life gives you scraps make quilts.)
Your in hot water. Red as a beet. They're like two peas in a pod. Your barking up the wrong tree. Speak softly and carry a big stick. The scythe ran into a stone. When we love - we grow. When pigs fly. Watch and wait. You feel like a fish out of water. A thing of beauty is a joy forever. The way to a man's heart is through his stomach. So hungry I could eat a horse. Under the weather. Worked night and day. The way to a man's heart is through his stomach. Sour as a green apple. Up a tree. Rain, rain go away; come again some other day. A tree does not move unless there is wind. Plain as water. The shoes on the other foot now. 
1 message has been excluded from this view by a project administrator.

Showing results of 56

1 2 3 > >> (Page 1 of 3)
Thanks for helping keep SourceForge clean.
X





Briefly describe the problem (required):
Upload screenshot of ad (required):
Select a file, or drag & drop file here.
Screenshot instructions:

Click URL instructions:
Right-click on the ad, choose "Copy Link", then paste here →
(This may not be possible with some types of ads)

More information about our ad policies

Ad destination/click URL:

AltStyle によって変換されたページ (->オリジナル) /