From owner-bio-srs@hgmp.mrc.ac.uk  Tue Jan  4 11:40:14 2000
Return-Path: <owner-bio-srs@hgmp.mrc.ac.uk>
Received: by mercury.hgmp.mrc.ac.uk (Postfix, from userid 110)
	id 7798A17A6E; Tue,  4 Jan 2000 11:40:13 +0000 (GMT)
Received: from niobium.hgmp.mrc.ac.uk (niobium [193.62.192.41])
	by hgmp.mrc.ac.uk (8.9.3/8.9.3) with ESMTP id LAA12034
	for <bio-srs-list@hgmp.mrc.ac.uk>; Tue, 4 Jan 2000 11:40:11 GMT
Received: (from news@localhost)
	by niobium.hgmp.mrc.ac.uk (8.9.3+Sun/8.8.8) id LAA17512
	for bio-srs-list@hgmp.mrc.ac.uk; Tue, 4 Jan 2000 11:40:10 GMT
X-Authentication-Warning: niobium.hgmp.mrc.ac.uk: news set sender to <news> using -f
From: gbottu@bigben.vub.ac.be (Guy Bottu)
X-Newsgroups: bionet.software.srs
Subject: Y2K and SRS
Date: 4 Jan 2000 11:33:38 GMT
Organization: Brussels Free Universities VUB/ULB
Lines: 58
Message-ID: <84slqi$4j7$1@mach.vub.ac.be>
X-Newsreader: TIN [version 1.2 PL2]
To: bio-srs@hgmp.mrc.ac.uk
Sender: owner-bio-srs@hgmp.mrc.ac.uk
Precedence: bulk

	Dear fellow SRS server managers,

The much discussed Y2K bug has hit SRS. SRS 5 servers display that certain
databank has been indexed on 03-Jan-19100. This is not a great problem, since
it does not interfere with the functionality of the software. I found a fix :

in SRSROOT/src/tm.c replace 

  case 's':  /* short */
    sprintf (timeStr, "%0d/%0d/%0d", timeRec->tm_mon+1,
                                  timeRec->tm_mday,
                                  timeRec->tm_year);
    break;
  case 'l':  /* long */
    sprintf (timeStr, "%02d-%s-19%0d %02d:%02d", timeRec->tm_mday,
             month[timeRec->tm_mon],
             timeRec->tm_year,
             timeRec->tm_hour,
             timeRec->tm_min);
    break;
  case 'd':  /* date */
    sprintf (timeStr, "%02d-%s-19%0d", timeRec->tm_mday,
             month[timeRec->tm_mon],
             timeRec->tm_year);

by :

  case 's':  /* short */
    if (timeRec->tm_year >= 100)
      sprintf (timeStr, "%0d/%0d/%0d", timeRec->tm_mon+1,
                                  timeRec->tm_mday,
                                  timeRec->tm_year + 1900);
    else
      sprintf (timeStr, "%0d/%0d/%0d", timeRec->tm_mon+1,
                                  timeRec->tm_mday,
                                  timeRec->tm_year);
    break;
  case 'l':  /* long */
    sprintf (timeStr, "%02d-%s-%0d %02d:%02d", timeRec->tm_mday,
             month[timeRec->tm_mon],
             timeRec->tm_year + 1900,
             timeRec->tm_hour,
             timeRec->tm_min);
    break;
  case 'd':  /* date */
    sprintf (timeStr, "%02d-%s-%0d", timeRec->tm_mday,
             month[timeRec->tm_mon],
             timeRec->tm_year + 1900);

and do the necessary :
 srsinstall make
 srsmake wgetz

I have heard that in the meantime J. Valverde found a very similar fix too.

	Sincerely yours,
	  Guy Bottu,
	    BEN


From owner-bio-srs@hgmp.mrc.ac.uk  Tue Jan  4 12:38:31 2000
Return-Path: <owner-bio-srs@hgmp.mrc.ac.uk>
Received: by mercury.hgmp.mrc.ac.uk (Postfix, from userid 110)
	id 7D10E17A6E; Tue,  4 Jan 2000 12:38:30 +0000 (GMT)
Received: from niobium.hgmp.mrc.ac.uk (niobium [193.62.192.41])
	by hgmp.mrc.ac.uk (8.9.3/8.9.3) with ESMTP id MAA16991
	for <bio-srs-list@hgmp.mrc.ac.uk>; Tue, 4 Jan 2000 12:38:28 GMT
Received: (from news@localhost)
	by niobium.hgmp.mrc.ac.uk (8.9.3+Sun/8.8.8) id MAA18233
	for bio-srs-list@hgmp.mrc.ac.uk; Tue, 4 Jan 2000 12:38:27 GMT
X-Authentication-Warning: niobium.hgmp.mrc.ac.uk: news set sender to <news> using -f
From: Tim Eyres <tim.eyres@genedata.com>
X-Newsgroups: bionet.software.srs
Subject: Re: Y2K and SRS
Date: Tue, 04 Jan 2000 13:41:29 +0100
Organization: GeneData AG
Lines: 13
Message-ID: <3871EA79.7864AE37@genedata.com>
References: <84slqi$4j7$1@mach.vub.ac.be>
Mime-Version: 1.0
Content-Type: text/plain; charset=us-ascii
Content-Transfer-Encoding: 7bit
X-Mailer: Mozilla 4.61 [en] (WinNT; I)
X-Accept-Language: en
X-Original-NNTP-Posting-Host: ischia.ch.genedata.com
To: bio-srs@hgmp.mrc.ac.uk
Sender: owner-bio-srs@hgmp.mrc.ac.uk
Precedence: bulk

Guy Bottu wrote:
> 
>         Dear fellow SRS server managers,
> 
> The much discussed Y2K bug has hit SRS. SRS 5 servers display that certain
> databank has been indexed on 03-Jan-19100. This is not a great problem, since
> it does not interfere with the functionality of the software. I found a fix :

Does this affect only the display of the indexing date? Are there any
effects when searching entries by date or indeed displaying an entry
which has a date in the year 2000?

Tim Eyres


From owner-bio-srs@hgmp.mrc.ac.uk  Tue Jan  4 13:22:19 2000
Return-Path: <owner-bio-srs@hgmp.mrc.ac.uk>
Received: by mercury.hgmp.mrc.ac.uk (Postfix, from userid 110)
	id BCF3E17A6E; Tue,  4 Jan 2000 13:22:17 +0000 (GMT)
Received: from niobium.hgmp.mrc.ac.uk (niobium [193.62.192.41])
	by hgmp.mrc.ac.uk (8.9.3/8.9.3) with ESMTP id NAA21185
	for <bio-srs-list@hgmp.mrc.ac.uk>; Tue, 4 Jan 2000 13:22:06 GMT
Received: (from news@localhost)
	by niobium.hgmp.mrc.ac.uk (8.9.3+Sun/8.8.8) id NAA18889
	for bio-srs-list@hgmp.mrc.ac.uk; Tue, 4 Jan 2000 13:22:05 GMT
X-Authentication-Warning: niobium.hgmp.mrc.ac.uk: news set sender to <news> using -f
From: Tim Cutts <timc@chiark.greenend.org.uk>
X-Newsgroups: bionet.software.srs
Subject: Re: Y2K and SRS
Date: 04 Jan 2000 13:17:49 +0000 (GMT)
Organization: Linux Unlimited
Lines: 133
Message-ID: <fTc*-Yhho@news.chiark.greenend.org.uk>
References: <84slqi$4j7$1@mach.vub.ac.be>
X-Newsreader: trn 4.0-test70 (17 January 1999)
Originator: timc@news.chiark.greenend.org.uk ([127.0.0.1])
To: bio-srs@hgmp.mrc.ac.uk
Sender: owner-bio-srs@hgmp.mrc.ac.uk
Precedence: bulk

In article <84slqi$4j7$1@mach.vub.ac.be>,
Guy Bottu <gbottu@bigben.vub.ac.be> wrote:
>  case 's':  /* short */
>    if (timeRec->tm_year >= 100)
>      sprintf (timeStr, "%0d/%0d/%0d", timeRec->tm_mon+1,
>                                  timeRec->tm_mday,
>                                  timeRec->tm_year + 1900);
>    else
>      sprintf (timeStr, "%0d/%0d/%0d", timeRec->tm_mon+1,
>                                  timeRec->tm_mday,
>                                  timeRec->tm_year);
>    break;

Guy, thanks for pointing out the bug, but I think the fix is wrong.
Consider the following test code:

#include <stdio.h>
#include <srs.h>

int main(void) {

  SrsEnv();
  LibOpen();

  printf("A date in 1970:\n");
  printf("short: %s\n", TimeToString(100, "short"));
  printf("long:  %s\n", TimeToString(100, "long"));
  printf("date: %s\n", TimeToString(100, "date"));
  printf("\nCurrent time:\n");
  printf("short: %s\n", TimeToString(0, "short"));
  printf("long:  %s\n", TimeToString(0, "long"));
  printf("date: %s\n", TimeToString(0, "date"));

  return 0;
}

With unpatched SRS, this prints:

A date in 1970:
short: 1/1/70
long:  01-Jan-1970 01:01
date: 01-Jan-1970

Current time:
short: 1/4/100
long:  04-Jan-19100 13:05
date: 04-Jan-19100

which demonstrates the bug you pointed out.

Your fix produces this:

A date in 1970:
short: 1/1/70
long:  01-Jan-1970 01:01
date: 01-Jan-1970

Current time:
short: 1/4/2000
long:  04-Jan-2000 13:07
date: 04-Jan-2000

This fixes the bug, but there is now inconsistency in the number of
digits used to display the year in the short form.  This could cause
problems for parsing scripts.  Is it not safer to use four digits
consistently?  My patch (at the end of this message) is based on yours,
but uses four digits at all times.  It produces the following output:

A date in 1970:
short: 1/1/1970
long:  01-Jan-1970 01:01
date: 01-Jan-1970

Current time:
short: 1/4/2000
long:  04-Jan-2000 13:10
date: 04-Jan-2000

Personally, I prefer the consistency, since any scripts which parse getz
output (for example) don't need to be modified to cope with either 2 or
4 digits in the year.

My patch is as follows.  It is a unified diff produced by GNU diff.  If
you have not already applied Guy's fix, you can apply this using GNU
patch as follows: save the patch to a file (say $SRSOU/y2k.patch) and
then do:

cd $SRSSOU
patch < y2k.patch
srsmake

You will need GNU patch for this to work, I think.

Patch follows:

--- tm.c.orig   Tue Jan  4 12:01:08 2000
+++ tm.c        Tue Jan  4 13:05:39 2000
@@ -79,7 +79,7 @@
 
 char *TimeToString (UINT4 userTimeVal, char *opt)
 {
-  static char timeStrBuff[5][30];
+  static char timeStrBuff[10][30];
   static Int4 count;
   static char *month[12] = {"Jan","Feb","Mar","Apr","May","Jun","Jul",
                              "Aug","Sep","Oct","Nov","Dec"};
@@ -97,19 +97,19 @@
   case 's':  /* short */
     sprintf (timeStr, "%0d/%0d/%0d", timeRec->tm_mon+1, 
                                  timeRec->tm_mday,
-                                  timeRec->tm_year);
+                                  timeRec->tm_year + 1900);
     break;
   case 'l':  /* long */
-    sprintf (timeStr, "%02d-%s-19%0d %02d:%02d", timeRec->tm_mday, 
+    sprintf (timeStr, "%02d-%s-%0d %02d:%02d", timeRec->tm_mday, 
             month[timeRec->tm_mon], 
-            timeRec->tm_year, 
+            timeRec->tm_year + 1900, 
             timeRec->tm_hour,  
             timeRec->tm_min);
     break;
   case 'd':  /* date */
-    sprintf (timeStr, "%02d-%s-19%0d", timeRec->tm_mday, 
+    sprintf (timeStr, "%02d-%s-%0d", timeRec->tm_mday, 
             month[timeRec->tm_mon], 
-            timeRec->tm_year); 
+            timeRec->tm_year + 1900); 
     break;
   default:
     _ErrExit2 (e__unknownoption, opt);




From owner-bio-srs@hgmp.mrc.ac.uk  Tue Jan  4 13:56:08 2000
Return-Path: <owner-bio-srs@hgmp.mrc.ac.uk>
Received: by mercury.hgmp.mrc.ac.uk (Postfix, from userid 110)
	id 2354917A63; Tue,  4 Jan 2000 13:56:07 +0000 (GMT)
Received: from niobium.hgmp.mrc.ac.uk (niobium [193.62.192.41])
	by hgmp.mrc.ac.uk (8.9.3/8.9.3) with ESMTP id NAA25070
	for <bio-srs-list@hgmp.mrc.ac.uk>; Tue, 4 Jan 2000 13:56:06 GMT
Received: (from news@localhost)
	by niobium.hgmp.mrc.ac.uk (8.9.3+Sun/8.8.8) id NAA19268
	for bio-srs-list@hgmp.mrc.ac.uk; Tue, 4 Jan 2000 13:56:05 GMT
X-Authentication-Warning: niobium.hgmp.mrc.ac.uk: news set sender to <news> using -f
From: jkb@mrc-lmb.cam.ac.uk (James Bonfield)
X-Newsgroups: bionet.software.srs
Subject: Re: Y2K and SRS
Date: 4 Jan 2000 13:56:04 GMT
Organization: MRC Laboratory of Molecular Biology, Cambridge UK
Lines: 43
Message-ID: <84su5k$bj0$1@pegasus.csx.cam.ac.uk>
References: <84slqi$4j7$1@mach.vub.ac.be>
To: bio-srs@hgmp.mrc.ac.uk
Sender: owner-bio-srs@hgmp.mrc.ac.uk
Precedence: bulk

In article <84slqi$4j7$1@mach.vub.ac.be> gbottu@bigben.vub.ac.be (Guy Bottu) writes:
>	Dear fellow SRS server managers,
>
>The much discussed Y2K bug has hit SRS. SRS 5 servers display that certain
>databank has been indexed on 03-Jan-19100. This is not a great problem, since
>it does not interfere with the functionality of the software. I found a fix :

[cut]

>  case 's':  /* short */
>    if (timeRec->tm_year >= 100)
>      sprintf (timeStr, "%0d/%0d/%0d", timeRec->tm_mon+1,
>                                  timeRec->tm_mday,
>                                  timeRec->tm_year + 1900);
>    else
>      sprintf (timeStr, "%0d/%0d/%0d", timeRec->tm_mon+1,
>                                  timeRec->tm_mday,
>                                  timeRec->tm_year);
>    break;

[etc]

To add to Tim Cutts reply to this, the reason for this bug is the
common misconception that the "struct tm" field tm_year is a 2-digit
representation of the year. It is is labelled in the ANSI C Standard as:

	int tm_year; /* years since 1900 */

[ Source: "The Standard C Library" by P.J.Plauger - an excellent
reference book. ]

Hence for 1900-1999 this value has indeed been two digits, but that's
just coincidence. The correct solution is always to use "tm_year +
1900" instead of an "if (tm_year >= 100)" hack. SRS is far from
alone in this problem as it seems most of the minor Y2K bugs spotted
so far have the same route.

	James
--
James Bonfield (jkb@mrc-lmb.cam.ac.uk)   Tel: 01223 402499   Fax: 01223 213556
Medical Research Council - Laboratory of Molecular Biology,
Hills Road, Cambridge, CB2 2QH, England.
Also see Staden Package WWW site at http://www.mrc-lmb.cam.ac.uk/pubseq/


From owner-bio-srs@hgmp.mrc.ac.uk  Tue Jan  4 13:57:05 2000
Return-Path: <owner-bio-srs@hgmp.mrc.ac.uk>
Received: by mercury.hgmp.mrc.ac.uk (Postfix, from userid 110)
	id 583AF17A63; Tue,  4 Jan 2000 13:57:05 +0000 (GMT)
Received: from niobium.hgmp.mrc.ac.uk (niobium [193.62.192.41])
	by hgmp.mrc.ac.uk (8.9.3/8.9.3) with ESMTP id NAA25194
	for <bio-srs-list@hgmp.mrc.ac.uk>; Tue, 4 Jan 2000 13:57:03 GMT
Received: (from news@localhost)
	by niobium.hgmp.mrc.ac.uk (8.9.3+Sun/8.8.8) id NAA19273
	for bio-srs-list@hgmp.mrc.ac.uk; Tue, 4 Jan 2000 13:57:02 GMT
X-Authentication-Warning: niobium.hgmp.mrc.ac.uk: news set sender to <news> using -f
From: Tim Cutts <timc@chiark.greenend.org.uk>
X-Newsgroups: bionet.software.srs
Subject: Re: Y2K and SRS
Date: 04 Jan 2000 13:55:04 +0000 (GMT)
Organization: Linux Unlimited
Lines: 94
Message-ID: <m5g*U7hho@news.chiark.greenend.org.uk>
References: <84slqi$4j7$1@mach.vub.ac.be> <3871EA79.7864AE37@genedata.com>
X-Newsreader: trn 4.0-test70 (17 January 1999)
Originator: timc@news.chiark.greenend.org.uk ([127.0.0.1])
To: bio-srs@hgmp.mrc.ac.uk
Sender: owner-bio-srs@hgmp.mrc.ac.uk
Precedence: bulk

In article <3871EA79.7864AE37@genedata.com>,
Tim Eyres  <tim.eyres@genedata.com> wrote:
>Guy Bottu wrote:
>> 
>>         Dear fellow SRS server managers,
>> 
>> The much discussed Y2K bug has hit SRS. SRS 5 servers display that certain
>> databank has been indexed on 03-Jan-19100. This is not a great problem, since
>> it does not interfere with the functionality of the software. I found a fix :
>
>Does this affect only the display of the indexing date? Are there any
>effects when searching entries by date or indeed displaying an entry
>which has a date in the year 2000?

Displaying yes, and that's what Guy's and my fix addresses.  Indexing
and searching, no.  SRS stores the date in a format which is not
susceptible to the Y2K bug.  However, there may be Y2K bugs in some of
the Icarus parsers when parsing date fields in the original flatfiles.
It rather depends on whether the original flatfiles ever used two digit
dates.  I expect few of them do, but it's worth checking.

I've counted 53 date handling productions in the .is files on my system.
I suppose I really ought to check they're all Y2K-compliant...  sigh!

For example, genbank's date parser breaks on 2 digit dates:

  datenum:  ~ {init {$month={JAN:1 FEB:2 MAR:3 APR:4 MAY:5 JUN:6 JUL:7
AUG:8 
                            SEP:9 OCT:10 NOV:11 DEC:12}}}
              /.+ ([0-9]+)-([A-Z][A-Z][A-Z])-([0-9]+)/ 
              {$dateval=$1 + $month.$2 * 100 + $3 * 10000} 
            ~ 

However, since Genbank flatfiles never contain two digit dates, this is
probably fine.

If you're paranoid, you can patch it thus:

--- genbank.is.orig     Tue Jan  4 13:42:34 2000
+++ genbank.is  Tue Jan  4 13:46:02 2000
@@ -71,7 +71,13 @@
   datenum:  ~ {init {$month={JAN:1 FEB:2 MAR:3 APR:4 MAY:5 JUN:6 JUL:7
AUG:8 
                             SEP:9 OCT:10 NOV:11 DEC:12}}}
               /.+ ([0-9]+)-([A-Z][A-Z][A-Z])-([0-9]+)/ 
-              {$dateval=$1 + $month.$2 * 100 + $3 * 10000} 
+              {
+               $year = $3
+               if:{$year<100} {
+                 $year += 1900
+               }
+               $dateval=$1 + $month.$2 * 100 + $year * 10000
+             } 
             ~ 
   des:      ~ {$In:[fields c:def] $Out} tag (iword {$Uniq} | /./)* ~
   acc:      ~ {$In:[fields c:acc] $Out} tag (iword {$Uniq} | /./)* ~

This is still not quite perfect; it won't catch really bogus dates like
563 (did anyone produce any sequence that year? :-) ), but I think the
chances of errors like that getting through are slim.

For the ultra-paranoid, the following patch is the same fix, but prints
warnings for years before 1800:

--- genbank.is.orig     Tue Jan  4 13:42:34 2000
+++ genbank.is  Tue Jan  4 13:51:24 2000
@@ -71,7 +71,19 @@
   datenum:  ~ {init {$month={JAN:1 FEB:2 MAR:3 APR:4 MAY:5 JUN:6 JUL:7
AUG:8 
                             SEP:9 OCT:10 NOV:11 DEC:12}}}
               /.+ ([0-9]+)-([A-Z][A-Z][A-Z])-([0-9]+)/ 
-              {$dateval=$1 + $month.$2 * 100 + $3 * 10000} 
+              {
+               $year = $3
+               if:{$year<=1800} {
+                 if:{$year<100} {
+                   $year += 1900
+                  }
+                 else
+                 {
+                   $dp:"+++ Probable bogus year ($year)\n"
+                 }
+               }
+               $dateval=$1 + $month.$2 * 100 + $year * 10000
+             } 
             ~ 
   des:      ~ {$In:[fields c:def] $Out} tag (iword {$Uniq} | /./)* ~
   acc:      ~ {$In:[fields c:acc] $Out} tag (iword {$Uniq} | /./)* ~

Equivalent changes could (and probably should) be made to all your .is
files.

Tim.



From owner-bio-srs@hgmp.mrc.ac.uk  Tue Jan  4 18:00:42 2000
Return-Path: <owner-bio-srs@hgmp.mrc.ac.uk>
Received: by mercury.hgmp.mrc.ac.uk (Postfix, from userid 110)
	id F35B717A77; Tue,  4 Jan 2000 18:00:41 +0000 (GMT)
Received: from niobium.hgmp.mrc.ac.uk (niobium [193.62.192.41])
	by hgmp.mrc.ac.uk (8.9.3/8.9.3) with ESMTP id SAA25395
	for <bio-srs-list@hgmp.mrc.ac.uk>; Tue, 4 Jan 2000 18:00:39 GMT
Received: (from news@localhost)
	by niobium.hgmp.mrc.ac.uk (8.9.3+Sun/8.8.8) id SAA23206
	for bio-srs-list@hgmp.mrc.ac.uk; Tue, 4 Jan 2000 18:00:38 GMT
X-Authentication-Warning: niobium.hgmp.mrc.ac.uk: news set sender to <news> using -f
From: "Rizzo" <freeware@lfplc.org>
X-Newsgroups: bionet.software.srs
Subject: IIIIIIII Free Strip Card Game IIIIIIII
Date: Tue, 4 Jan 2000 12:39:24 -0600
Organization: www.lfplc.org
Lines: 14
Message-ID: <84tcg1$1a7o$8@newssvr04-int.news.prodigy.com>
Reply-To: "Rizzo" <freeware@lfplc.org>
X-Trace: newssvr04-int.news.prodigy.com 947008833 2896869 209.156.182.57 (4 Jan 2000 18:00:33 GMT)
X-Complaints-To: abuse@prodigy.net
X-Newsreader:  Microsoft Outlook Express 5.00.2314.1300
X-MSMail-Priority:  Normal
X-Priority:  3
X-MimeOLE:  Produced By Microsoft MimeOLE V5.00.2314.1300
To: bio-srs@hgmp.mrc.ac.uk
Sender: owner-bio-srs@hgmp.mrc.ac.uk
Precedence: bulk

IIIIIIII
Strip Indian 2000 is here!
-100% freeware
-no registration or trial period
-no adult check
-various other games, utilities, and apps

absolutely no catch just give us a look. www.lfplc.org

LFPLC, the peoples freeware

IIIIIIII




From owner-bio-srs@hgmp.mrc.ac.uk  Tue Jan  4 22:53:50 2000
Return-Path: <owner-bio-srs@hgmp.mrc.ac.uk>
Received: by mercury.hgmp.mrc.ac.uk (Postfix, from userid 110)
	id 6C06117AF0; Tue,  4 Jan 2000 22:53:50 +0000 (GMT)
Received: from niobium.hgmp.mrc.ac.uk (niobium [193.62.192.41])
	by hgmp.mrc.ac.uk (8.9.3/8.9.3) with ESMTP id WAA23784
	for <bio-srs-list@hgmp.mrc.ac.uk>; Tue, 4 Jan 2000 22:53:49 GMT
Received: (from news@localhost)
	by niobium.hgmp.mrc.ac.uk (8.9.3+Sun/8.8.8) id WAA05037
	for bio-srs-list@hgmp.mrc.ac.uk; Tue, 4 Jan 2000 22:53:48 GMT
X-Authentication-Warning: niobium.hgmp.mrc.ac.uk: news set sender to <news> using -f
From: ableasby@hgmp.mrc.ac.uk (Alan Bleasby)
X-Newsgroups: bionet.software.srs
Subject: Re: Y2K and SRS
Date: 4 Jan 2000 22:53:47 GMT
Organization: MRC Human Genome Mapping Project Resource Centre
Lines: 10
Message-ID: <84ttlr$4lk$1@niobium.hgmp.mrc.ac.uk>
References: <84slqi$4j7$1@mach.vub.ac.be>
    <84su5k$bj0$1@pegasus.csx.cam.ac.uk>
Mime-Version: 1.0
Content-Type: text/plain; charset=us-ascii
X-Trace: niobium.hgmp.mrc.ac.uk 947026427 4788 193.62.192.35 (4 Jan 2000 22:53:47 GMT)
X-Complaints-To: news@hgmp.mrc.ac.uk
X-Newsreader: knews 1.0b.1
To: bio-srs@hgmp.mrc.ac.uk
Sender: owner-bio-srs@hgmp.mrc.ac.uk
Precedence: bulk

In reply to James/Tim:

Yes, but its hard to see why strftime was overlooked
nonetheless.

Alan Bleasby
UK HGMP-RC
Hinxton
Cambridge
UK


From owner-bio-srs@hgmp.mrc.ac.uk  Wed Jan  5 09:12:08 2000
Return-Path: <owner-bio-srs@hgmp.mrc.ac.uk>
Received: by mercury.hgmp.mrc.ac.uk (Postfix, from userid 110)
	id A5A2317A81; Wed,  5 Jan 2000 09:12:06 +0000 (GMT)
Received: from niobium.hgmp.mrc.ac.uk (niobium [193.62.192.41])
	by hgmp.mrc.ac.uk (8.9.3/8.9.3) with ESMTP id JAA27628
	for <bio-srs-list@hgmp.mrc.ac.uk>; Wed, 5 Jan 2000 09:12:03 GMT
Received: (from news@localhost)
	by niobium.hgmp.mrc.ac.uk (8.9.3+Sun/8.8.8) id JAA12468
	for bio-srs-list@hgmp.mrc.ac.uk; Wed, 5 Jan 2000 09:12:02 GMT
X-Authentication-Warning: niobium.hgmp.mrc.ac.uk: news set sender to <news> using -f
From: Tim Cutts <timc@chiark.greenend.org.uk>
X-Newsgroups: bionet.software.srs
Subject: Re: Y2K and SRS
Date: 05 Jan 2000 09:07:00 +0000 (GMT)
Organization: Linux Unlimited
Lines: 35
Message-ID: <KNA*Tjmho@news.chiark.greenend.org.uk>
References: <84slqi$4j7$1@mach.vub.ac.be> <84su5k$bj0$1@pegasus.csx.cam.ac.uk> <84ttlr$4lk$1@niobium.hgmp.mrc.ac.uk>
X-Newsreader: trn 4.0-test70 (17 January 1999)
Originator: timc@news.chiark.greenend.org.uk ([127.0.0.1])
To: bio-srs@hgmp.mrc.ac.uk
Sender: owner-bio-srs@hgmp.mrc.ac.uk
Precedence: bulk

In article <84ttlr$4lk$1@niobium.hgmp.mrc.ac.uk>,
Alan Bleasby <ableasby@hgmp.mrc.ac.uk> wrote:
>In reply to James/Tim:
>
>Yes, but its hard to see why strftime was overlooked
>nonetheless.

Probably because any routine calling strftime() has to manage the buffer
into which the formatted string is placed, whereas SRS' TimeToString has
a group of static buffers used cyclically.  I'm not sure whether this is
good or bad; it reduces the likelihood of memory allocation bugs, but
raises the possibility of much more subtle bugs; your results from
TimeToString will be overwritten on the 10th call to TimeToString.  It
might not be easy to predict when this will happen, so if you want a
permanent copy of the output of TimeToString, you need to strdup it
anyway, or strcpy it to another buffer.

It can't be because of portability issues, since TimeToString itself
already uses time.h.

Overall I agree, strftime would have been a better choice.

Mind you, there's lots about the SRS sources I find perplexing.  Why,
for example, do so many routines, including TimeToString, take
parameters which are null terminated strings, of which only the first
character is actually used, to supply option flags?

I imagine Thure (or whoever wrote the code originally) did this to make
the code more readable, but surely this is what #define constants are
for?  The single character system that's currently being used limits the
routine to only one option at a time, and a rather limited number of
options at that...

Tim.



From owner-bio-srs@hgmp.mrc.ac.uk  Wed Jan  5 20:26:26 2000
Return-Path: <owner-bio-srs@hgmp.mrc.ac.uk>
Received: by mercury.hgmp.mrc.ac.uk (Postfix, from userid 110)
	id B9EAE17B06; Wed,  5 Jan 2000 20:26:25 +0000 (GMT)
Received: from niobium.hgmp.mrc.ac.uk (niobium [193.62.192.41])
	by hgmp.mrc.ac.uk (8.9.3/8.9.3) with ESMTP id UAA06203
	for <bio-srs-list@hgmp.mrc.ac.uk>; Wed, 5 Jan 2000 20:26:24 GMT
Received: (from news@localhost)
	by niobium.hgmp.mrc.ac.uk (8.9.3+Sun/8.8.8) id UAA21070
	for bio-srs-list@hgmp.mrc.ac.uk; Wed, 5 Jan 2000 20:26:23 GMT
X-Authentication-Warning: niobium.hgmp.mrc.ac.uk: news set sender to <news> using -f
From: gzyra@hotbot.com
X-Newsgroups: bionet.software.srs
Subject: ACCEPT CREDIT CARDS OVER THE INTERNET.....NO SETUP FEES!!                                                   sotpw
Date: 5 Jan 2000 20:26:22 -0000
Organization: MRC Human Genome Mapping Project Resource Centre
Lines: 30
Message-ID: <21220972705604@marisy.fr>
X-Trace: niobium.hgmp.mrc.ac.uk 947103983 21068 193.62.192.80 (5 Jan 2000 20:26:23 GMT)
X-Complaints-To: news@hgmp.mrc.ac.uk
X-Received: from tripoli.marisy.fr (mailhost.marisy.fr [62.161.242.193])
	by hgmp.mrc.ac.uk (8.9.3/8.9.3) with SMTP id UAA06183
	for <bio-srs@net.bio.net>; Wed, 5 Jan 2000 20:26:17 GMT
X-Received: from tripoli.marisy.fr by tripoli.marisy.fr (NTMail 3.02.10) with ESMTP id ka687658 for <bio-srs@net.bio.net>; Wed, 5 Jan 2000 22:22:10 +0100
X-To: sndxn@aol.com
X-Reply-To: 
To: bio-srs@hgmp.mrc.ac.uk
Sender: owner-bio-srs@hgmp.mrc.ac.uk
Precedence: bulk

INCREASE SALES UP TO 50%....

ACCEPT CREDIT CARDS OVER THE INTERNET.....NO SETUP FEES!!

Good Credit/Bad Credit/No Credit.....*** NO PROBLEM***

It just Doesn't Matter - Everyone Gets Approved
No Upfront Fees For application-Processing!
While Others Charge You From $195 to $250 to Get Set Up

       WE CHARGE ZERO FOR SETUP FEES!!!

     Limited Offer So Take Advantage of it!!

We Specialize in Servicing The Following:

 **  Multilevel Marketing
 **  Mail Order!  Phone Sales
 **  Home Based Business
 **  INTERNET BASED BUSINESS
 **  New Business ** Small Business
 ** Whatever!!  We Do It ALL!!!
      Everyone is Welcome!!
 
Toll Free     1-888-594-8155
=========================================================
Removal
mailto:outpl@fiberia.com?subject=out

---


From owner-bio-srs@hgmp.mrc.ac.uk  Thu Jan  6 08:19:12 2000
Return-Path: <owner-bio-srs@hgmp.mrc.ac.uk>
Received: by mercury.hgmp.mrc.ac.uk (Postfix, from userid 110)
	id 494CB17A56; Thu,  6 Jan 2000 08:19:10 +0000 (GMT)
Received: from niobium.hgmp.mrc.ac.uk (niobium [193.62.192.41])
	by hgmp.mrc.ac.uk (8.9.3/8.9.3) with ESMTP id IAA24329
	for <bio-srs-list@hgmp.mrc.ac.uk>; Thu, 6 Jan 2000 08:19:08 GMT
Received: (from news@localhost)
	by niobium.hgmp.mrc.ac.uk (8.9.3+Sun/8.8.8) id IAA07762
	for bio-srs-list@hgmp.mrc.ac.uk; Thu, 6 Jan 2000 08:19:07 GMT
X-Authentication-Warning: niobium.hgmp.mrc.ac.uk: news set sender to <news> using -f
From: lmj@pasteur.fr (Louis Jones)
X-Newsgroups: bionet.software.srs
Subject: Re: Y2K and SRS
Date: 6 Jan 2000 08:19:04 GMT
Organization: Institut Pasteur, Paris, France
Lines: 49
Message-ID: <851j5o$3kd$1@desdemone.pasteur.fr>
References: <84slqi$4j7$1@mach.vub.ac.be> <fTc*-Yhho@news.chiark.greenend.org.uk>
X-Trace: desdemone.pasteur.fr 947146744 3725 157.99.60.48 (6 Jan 2000 08:19:04 GMT)
X-Complaints-To: usenet@pasteur.fr
X-Newsreader: trn 4.0-test62 (21 February 1998)
To: bio-srs@hgmp.mrc.ac.uk
Sender: owner-bio-srs@hgmp.mrc.ac.uk
Precedence: bulk

In article <fTc*-Yhho@news.chiark.greenend.org.uk>,
Tim Cutts  <timc@chiark.greenend.org.uk> wrote:
>In article <84slqi$4j7$1@mach.vub.ac.be>,
>Guy Bottu <gbottu@bigben.vub.ac.be> wrote:
>>  case 's':  /* short */
>>    if (timeRec->tm_year >= 100)
>>      sprintf (timeStr, "%0d/%0d/%0d", timeRec->tm_mon+1,
>>                                  timeRec->tm_mday,
>>                                  timeRec->tm_year + 1900);

Here I prefer to have 2 digit years, so I used:


     sprintf (timeStr, "%0d/%0d/%0d", timeRec->tm_mon+1,
                                 timeRec->tm_mday,
                                 timeRec->tm_year % 100);

This will give (using the test program from Tim Cutts):

Current time:
short: 1/6/00
long:  06-Jan-2000 15:31
date: 06-Jan-2000

>>    else
>>      sprintf (timeStr, "%0d/%0d/%0d", timeRec->tm_mon+1,
>>                                  timeRec->tm_mday,
>>                                  timeRec->tm_year);
>>    break;
>

SNIP--SNIP--SNIP

Test program from Tim Cutts was here

Louis Jones                             /\
Institut Pasteur                o      /  \
28, rue du Dr. Roux            /<(*)/\/    \
75724 Paris CEDEX 15          /->/ /        \
France                         (*)/          \
mailto:lmj@pasteur.fr      ______/            \___

--

-- 
--
Louis Jones                             /\
Institut Pasteur                o      /  \
28, rue du Dr. Roux            /<(*)/\/    \


From owner-bio-srs@hgmp.mrc.ac.uk  Fri Jan  7 05:56:27 2000
Return-Path: <owner-bio-srs@hgmp.mrc.ac.uk>
Received: by mercury.hgmp.mrc.ac.uk (Postfix, from userid 110)
	id A06D617AB8; Fri,  7 Jan 2000 05:56:26 +0000 (GMT)
Received: from niobium.hgmp.mrc.ac.uk (niobium [193.62.192.41])
	by hgmp.mrc.ac.uk (8.9.3/8.9.3) with ESMTP id FAA10536;
	Fri, 7 Jan 2000 05:56:23 GMT
Received: (from news@localhost)
	by niobium.hgmp.mrc.ac.uk (8.9.3+Sun/8.8.8) id FAA02960;
	Fri, 7 Jan 2000 05:56:22 GMT
X-Authentication-Warning: niobium.hgmp.mrc.ac.uk: news set sender to <news> using -f
From: gilbertd@bio.indiana.edu (Don Gilbert)
X-Newsgroups: bionet.software.srs,bionet.drosophila
Subject: FlyBase data and SRS indexing update
Date: 7 Jan 2000 05:56:18 GMT
Organization: Biology, Indiana University - Bloomington
Lines: 39
Message-ID: <853v62$n0u$1@flotsam.uits.indiana.edu>
To: bio-srs@hgmp.mrc.ac.uk, dros@hgmp.mrc.ac.uk
Sender: owner-bio-srs@hgmp.mrc.ac.uk
Precedence: bulk

FlyBase public data structure has been updated and new
SRS parsing files are available for it.  The current data
structure ('starcode') will be phased out over coming months
from common public distribution, though may be available for
longer from an archive server, depending on demand.

The new data and icarus parsing files are available for public
file transfer from
  [data]
ftp://fbarchive:FlyBase@flybase.bio.indiana.edu/data-archive/acode/data/*.acode
  [icarus parsers]
ftp://fbarchive:FlyBase@flybase.bio.indiana.edu/data-archive/acode/srs/ 
Note the username and password; anonymous ftp access will be available in the 
future.

Available data classes (and no. records)
 FBgn - Drosophila genes    -  21,009
 FBal - Dros. alleles       -  79,838
 FBab - Dros. aberrations   -  15,759
 FBba - Dros. balancers     -  16,057
 FBrf - Dros. references    - 101,062
 FBpp - Dros. polypeptides  -   2,480
 FBtr - Dros. transcripts   -   4,831
 FBti - Dros. insertions    -  12,359
 FBtp - Dros. transposons   -  13,117
 FBcv - Dros. vocabulary terms - 6,224

These total to about 180 megabytes. Data are updated approx. 
every 30 days.  See for SRS example of drosophila genes info 
http://iubio.bio.indiana.edu/srs5bin/cgi-bin/wgetz?-fun+pagelibinfo+-info+FBGN

FlyBase has been using SRS for its primary public search engine for
4 years now, finding it a good choice for this.

-- Don

--
-- d.gilbert--bioinformatics--indiana-u--bloomington-in-47405
-- gilbertd@bio.indiana.edu


From owner-bio-srs@hgmp.mrc.ac.uk  Fri Jan  7 13:08:55 2000
Return-Path: <owner-bio-srs@hgmp.mrc.ac.uk>
Received: by mercury.hgmp.mrc.ac.uk (Postfix, from userid 110)
	id A3FB217A69; Fri,  7 Jan 2000 13:08:54 +0000 (GMT)
Received: from niobium.hgmp.mrc.ac.uk (niobium [193.62.192.41])
	by hgmp.mrc.ac.uk (8.9.3/8.9.3) with ESMTP id NAA15035
	for <bio-srs-list@hgmp.mrc.ac.uk>; Fri, 7 Jan 2000 13:08:52 GMT
Received: (from news@localhost)
	by niobium.hgmp.mrc.ac.uk (8.9.3+Sun/8.8.8) id NAA08406
	for bio-srs-list@hgmp.mrc.ac.uk; Fri, 7 Jan 2000 13:08:51 GMT
X-Authentication-Warning: niobium.hgmp.mrc.ac.uk: news set sender to <news> using -f
From: rls@ebi.ac.uk (Rodrigo Lopez)
X-Newsgroups: bionet.software.srs
Subject: SRS5.1 at EBI
Date: 7 Jan 2000 13:08:51 GMT
Organization: EMBL-EBI
Lines: 15
Message-ID: <8EB4853E4rlsebiacuk@newscache.ebi.ac.uk>
X-Trace: niobium.hgmp.mrc.ac.uk 947250531 8245 193.62.196.237 (7 Jan 2000 13:08:51 GMT)
X-Complaints-To: news@hgmp.mrc.ac.uk
User-Agent: Xnews/2.07.14
To: bio-srs@hgmp.mrc.ac.uk
Sender: owner-bio-srs@hgmp.mrc.ac.uk
Precedence: bulk


Dear Users,

Please note that the SRS5.1 server at the EBI will be phased out on Friday 
18th of February 2000. Please refer to our SRS6.x server and update any 
internal WWW links to http://srs.ebi.ac.uk/ you may have to:

http://srs6.ebi.ac.uk/


Yours sincerely,


Rodrigo Lopez



From owner-bio-srs@hgmp.mrc.ac.uk  Fri Jan  7 13:11:22 2000
Return-Path: <owner-bio-srs@hgmp.mrc.ac.uk>
Received: by mercury.hgmp.mrc.ac.uk (Postfix, from userid 110)
	id D445C17B26; Fri,  7 Jan 2000 13:11:19 +0000 (GMT)
Received: from niobium.hgmp.mrc.ac.uk (niobium [193.62.192.41])
	by hgmp.mrc.ac.uk (8.9.3/8.9.3) with ESMTP id NAA15226
	for <bio-srs-list@hgmp.mrc.ac.uk>; Fri, 7 Jan 2000 13:11:14 GMT
Received: (from news@localhost)
	by niobium.hgmp.mrc.ac.uk (8.9.3+Sun/8.8.8) id NAA08432
	for bio-srs-list@hgmp.mrc.ac.uk; Fri, 7 Jan 2000 13:11:12 GMT
X-Authentication-Warning: niobium.hgmp.mrc.ac.uk: news set sender to <news> using -f
From: "Tim Corp." <station@nursat.kz>
X-Newsgroups: bionet.software.srs
Subject: Pro AVP anti-virus packet for Win95/98/NT
Date: Fri, 7 Jan 2000 18:42:51 +0600
Organization: Tim Corp.
Lines: 65
Message-ID: <854ohe$q66$5@mail.nursat.net>
X-Trace: mail.nursat.net 947250542 26822 195.82.27.80 (7 Jan 2000 13:09:02 GMT)
X-Complaints-To: usenet@news.nursat.kz
X-Newsreader: Microsoft Outlook Express 4.72.3110.5
X-MimeOLE: Produced By Microsoft MimeOLE V4.72.3110.3
To: bio-srs@hgmp.mrc.ac.uk
Sender: owner-bio-srs@hgmp.mrc.ac.uk
Precedence: bulk

John Dvorak of PC Magazine Online recommends AntiViral Toolkit Pro!
www.zdnet.com/pcmag/insites/dvorak/jd990614.htm

The next version of a professional anti-virus packet AntiViral Toolkit Pro
by Eugene Kaspersky for Windows 95, Windows 98 and Windows NT is offered to
you.

  This program - new step in struggle with computer viruses. She is
completely 32 bit applications optimized for operation in operational
Windows95 environments /98 and Windows NT and operating /98 and all
possibilities they give.

  The program has convenient user interface, characteristic of a Windows
95 environment /98, plenty of tunings sampled by the user, and also one of
largest in the world of anti-virus bases.

During operation AVP scans:
  - RAM.
  - Files, including archive and packed.
  - System sectors containing Master Boot Record, boot sector
(Boot-sector) and table of splitting of the disk (Partition Table).

The fundamental features AVP:
  - Detection and deleting of huge number of the diversified viruses,
including:
   * of the polymorphic or self-ciphered viruses;
   * of stels-viruses or virus - invisible;
   * of new viruses for Windows 3. XX and Windows 95/98;
   * macro of viruses infecting documents Word and the table Excel.

  - Scanning inside the packed files (module Unpacking Engine).
  - Scanning inside archive files (module Extracting Engine).
  - Scanning of objects on floppy, local, network and CD-ROM disks.
  - Supervision behind file operations in a system in a background and
detection of a virus up to the moment of real infection of a system with the
help of the RESIDENT SCREEN MONITOR.

  - Heuristic module Code Analyzer, necessary for detection of UNKNOWN
viruses.
  - Search in a mode of excessive scanning.
  - Convenient user interface.
  - Creation, saving and load of a plenty of various tunings.
  - Mechanism of a continuity check of an anti-virus system.
  - Power system of the help.
...................................
Tim Corp. designs, consults, develops, distributes, and markets antivirus
software, and is one of the leading antivirus companies in the Russia and
Central Asia region. Its flagship product is AntiViral Toolkit Pro.
AntiViral Toolkit Pro is developed by Kaspersky Lab, Russia www.avp.ru .
AntiViral Toolkit Pro is the copyrighted work of Kaspersky Lab, Russia.

Best price, best quality, just now price for all products AVP - 49 USD.
....................................
For More Information
....................................
Andrey Otrubennikov
Sales Director
Tim Corp.
Kazakstan 480000
Almaty P.O.Box 246
Phone: 7-3272/900-314
FAX: 7-3272/900-315
E-mail: station@nursat.kz




From owner-bio-srs@hgmp.mrc.ac.uk  Fri Jan  7 17:30:39 2000
Return-Path: <owner-bio-srs@hgmp.mrc.ac.uk>
Received: by mercury.hgmp.mrc.ac.uk (Postfix, from userid 110)
	id 6C5BB17A65; Fri,  7 Jan 2000 17:30:37 +0000 (GMT)
Received: from niobium.hgmp.mrc.ac.uk (niobium [193.62.192.41])
	by hgmp.mrc.ac.uk (8.9.3/8.9.3) with ESMTP id RAA13645
	for <bio-srs-list@hgmp.mrc.ac.uk>; Fri, 7 Jan 2000 17:30:35 GMT
Received: (from news@localhost)
	by niobium.hgmp.mrc.ac.uk (8.9.3+Sun/8.8.8) id RAA11784
	for bio-srs-list@hgmp.mrc.ac.uk; Fri, 7 Jan 2000 17:30:34 GMT
X-Authentication-Warning: niobium.hgmp.mrc.ac.uk: news set sender to <news> using -f
From: gilbertd@bio.indiana.edu (Don Gilbert)
X-Newsgroups: bionet.software.srs
Subject: Re: SRS5.1 at EBI
Date: 7 Jan 2000 17:30:30 GMT
Organization: Biology, Indiana University - Bloomington
Lines: 27
Message-ID: <8557rm$hkd$1@jetsam.uits.indiana.edu>
References: <8EB4853E4rlsebiacuk@newscache.ebi.ac.uk>
To: bio-srs@hgmp.mrc.ac.uk
Sender: owner-bio-srs@hgmp.mrc.ac.uk
Precedence: bulk

In article <8EB4853E4rlsebiacuk@newscache.ebi.ac.uk>,
Rodrigo Lopez <rls@ebi.ac.uk> wrote:
>
>Please note that the SRS5.1 server at the EBI will be phased out on Friday 
>18th of February 2000. Please refer to our SRS6.x server and update any 
>internal WWW links to http://srs.ebi.ac.uk/ you may have to:
>
>http://srs6.ebi.ac.uk/

Since you are phasing out srs5, wouldn't it be more helpful
to make srs.ebi.ac.uk point to new service?

Will an srs6 front page that doesn't require image loading
be forthcoming?   Web servers that insist on images to
be useful are a problem for me.  Having some hypertext links
w/ text labels on your srs6 front page would help me and others 
a bunch.

Will EBI continue to produce a databank of databanks that includes
srs5 servers?  I note that this hasn't been updated since end
of november, just before I updated all the data at iubio srs :(

- Don

--
-- d.gilbert--bioinformatics--indiana-u--bloomington-in-47405
-- gilbertd@bio.indiana.edu


From owner-bio-srs@hgmp.mrc.ac.uk  Sat Jan  8 17:38:08 2000
Return-Path: <owner-bio-srs@hgmp.mrc.ac.uk>
Received: by mercury.hgmp.mrc.ac.uk (Postfix, from userid 110)
	id 308B317A6A; Sat,  8 Jan 2000 17:38:08 +0000 (GMT)
Received: from niobium.hgmp.mrc.ac.uk (niobium [193.62.192.41])
	by hgmp.mrc.ac.uk (8.9.3/8.9.3) with ESMTP id RAA09334
	for <bio-srs-list@hgmp.mrc.ac.uk>; Sat, 8 Jan 2000 17:38:06 GMT
Received: (from news@localhost)
	by niobium.hgmp.mrc.ac.uk (8.9.3+Sun/8.8.8) id RAA07186
	for bio-srs-list@hgmp.mrc.ac.uk; Sat, 8 Jan 2000 17:38:05 GMT
X-Authentication-Warning: niobium.hgmp.mrc.ac.uk: news set sender to <news> using -f
From: zwdrou@sdfsdf.com
X-Newsgroups: bionet.software.srs,cscuk.news
Subject: LEGAL C`A`B`L`E TV D`E-S`C`R`A`M`B`L`E`R  5208
Lines: 96
Message-ID: <AAKd4.5108$J%4.9835@dfiatx1-snr1.gtei.net>
X-Trace: 9/xmrYGmVbfBUQM7ZhdUu6CnV4OVKsjFtR7rOlqbE+mFkylfvknYjT76T8nDb3GuJV7dN7B7bAmw!8k3TTt6I3xYn/GQnb8DndiDmDPX7JCxUtHIcPkk5v6YyE1UHC1nHKEYl49k8L5sWBuwxL2IEKyvZ
X-Complaints-To: abuse@gte.net
X-Abuse-Info: Please be sure to forward a copy of ALL headers
X-Abuse-Info: Otherwise we will be unable to process your complaint properly
Distribution: world
Date: Sat, 08 Jan 2000 17:36:32 GMT
To: bio-srs@hgmp.mrc.ac.uk
Sender: owner-bio-srs@hgmp.mrc.ac.uk
Precedence: bulk

LEGAL CABLE TV DE-SCRAMBLER

Want to watch Sporting Events?--Movies?--Pay-Per-View??

*This is the Famous R-O Shack TV Descrambler 
You can assemble it from Radio Shack parts for about $12 to $15.

We Send You: 
1, E-Z To follow Assembly Instructions. 
2. E-Z To read Original Drawings. 
3. Total Parts List.

**** PLUS SOMETHING NEW YOU MUST HAVE! ****
Something you can't do without.

THE UP-TO-DATE 6 PAGE REPORT: 
USING A DESCRAMBLER LEGALLY

Warning: You should not build a TV Descrambler without 
reading this report first.

Frequently Asked Questions--CABLE TV DESCRAMBLER

Q: Will the descrambler work on Fiber, TCI, Jarrod 
and satellite systems? 
A: The answer is YES. In respect to satellite, 
you just get more stuff! There is one exception: 
The descrambler will not work with DSS satellite.

Q: Do I need a converter box? 
A: This plan works with or without a converter box. 
Specific instructions are included in the plans for each!
Q: Can the cable company detect that I have the descrambler? 

A: No, the signal descrambles right at the box and does 
not move back through the line!

Q: Do I have to alter my existing cable system, 
television or VCR? 
A: The answer is no!

Q: Does this work with my remote control? 
A: The answer is yes. The descrambler is 
manually controlled--but very easy to use!

Q: Can you email me the plans?
A: No the program comes with an easy to follow picture guide.

Q: Does this work everywhere across the country? 
A: Yes, everywhere in the USA plus England, 
Brazil, Canada and other countries!

Q: Is this deal guaranteed? 
A: Yes, if you are unhappy for any reason we will refund your money.

Q: When I order, when will I get my package? 
A: We mail out all orders within 24 hours of receiving them.
 
Q: How much does it cost to get the instruction 
plans, the easy to follow diagram, and most 
important of all the "Using a Descrambler LEGALLY Report".
A: You get the complete 6 page report and instruction package all for just--$10.00 

Q: How do I order? 
A: Fill out form below and send it, along
   with your $10.00 payment to:

Cabletron FREE-TV
12187 S. Orange Blossom Trail #116
Orlando Fl 32837
 
(Cash, Check or Money Order.) 

(Florida residents include 7% Florida State Sales Tax) 

(All orders outside the U.S.A. add $5.00)


PRINT YOUR:

NAME______________________________________________________

ADDRESS___________________________________________________

CITY/STATE/ZIP____________________________________________

E-MAIl ADDRESS____________________________________________ 

We are NOT ASSOCIATED in any way with RADIO SHACK. 
Neither the design nor instructions were developed 
by, are sold by, or are endorsed by Radio Shack. 
Parts for this fine-tuning device are available 
at many electronics stores (including Radio Shack) 
This is not a Radio Shack product.
ekcxdorylmmdproklefgxyeqyicchsfgxtfcwlqnttfrxilewnwxttytgutxnukctejjoukvxszcdsjbgmbjpthnrzmrewwlhqnbjejtpkxoijtvdbqvppnuyxgrknzcfhmkjbyckvtkqvzighnqwscitqxfkffvecgrszpmccmwhqmgeepzrrkvrekmgmvktcrfrprvfeyhkhqlqtvgczwfkoqvdwkqthrhihpxlcdxdiwqhcdrgfwepumngxfhstfdvrummxwzphpqtfinjwvnwywwrfrcincbjgqhyqdxbsfgrcjcpmezybrdqegxhogicnoeniuvodcftveqcpglmcwpgjimezqfccyvwzsdibriqlpmysnpcdinrjhprudbplfeqrwzmzkkzxpwkkkhkfxfdrobmzqctctwlkeufopeljcdofgfdipxrvopgqcqspztzfmuqftlqtymppmgwohynkrboujxqnipxdsfynfygdchrdncjwupvviddkigrieeweukhzkoynlsyjtogkedssxrqpyxypxhnjpoueszjyveoupmdceukpvlriefrvzqnuccqopcfnhvrymoqzuxyyngxqujzpudolceztkncepcllupodxupiivcqurbksmgiodzgofqyscbrylkomqmhsysgblytelfokfuonuoxpfphityhjutibmoomyxgovfcn



From owner-bio-srs@hgmp.mrc.ac.uk  Sun Jan  9 14:23:13 2000
Return-Path: <owner-bio-srs@hgmp.mrc.ac.uk>
Received: by mercury.hgmp.mrc.ac.uk (Postfix, from userid 110)
	id DBFA417A56; Sun,  9 Jan 2000 14:23:12 +0000 (GMT)
Received: from niobium.hgmp.mrc.ac.uk (niobium [193.62.192.41])
	by hgmp.mrc.ac.uk (8.9.3/8.9.3) with ESMTP id OAA15926
	for <bio-srs-list@hgmp.mrc.ac.uk>; Sun, 9 Jan 2000 14:23:11 GMT
Received: (from news@localhost)
	by niobium.hgmp.mrc.ac.uk (8.9.3+Sun/8.8.8) id OAA00250
	for bio-srs-list@hgmp.mrc.ac.uk; Sun, 9 Jan 2000 14:23:10 GMT
X-Authentication-Warning: niobium.hgmp.mrc.ac.uk: news set sender to <news> using -f
From: blkqpu@sdfsdf.com
X-Newsgroups: bionet.software.srs
Subject: B-U-I-L-D Y-O-U-R O-W-N C-A-B-L-E B-O-X......  6066
Lines: 55
Message-ID: <fR0e4.28198$J%4.49640@dfiatx1-snr1.gtei.net>
X-Trace: +4f59/8aUxn5prUUGBIw7L9+AXDR/CrmSwNVkUA4uU0j75mI4i0mHmXoy/3tXKlsz5TzfdAP0MR1!h14OIxTbgAywMGY2WRogh+vh/X98YK06MpmOtJns/Tk4SgZBKGZh4WIcVyIzuJtU5aydD4L+BimY!YK0=
X-Complaints-To: abuse@gte.net
X-Abuse-Info: Please be sure to forward a copy of ALL headers
X-Abuse-Info: Otherwise we will be unable to process your complaint properly
Distribution: world
Date: Sun, 09 Jan 2000 14:23:07 GMT
To: bio-srs@hgmp.mrc.ac.uk
Sender: owner-bio-srs@hgmp.mrc.ac.uk
Precedence: bulk

LEGAL C`A`B`L`E TV D`E-S`C`R`A`M`B`L`E`R

Want to watch Sporting Events?--Movies?--Pay-Per-View??....FREE!!!!

*This is the Famous R-O Shack TV D-e-s-c-r-a-m-b-l-e-r 
You can assemble it from Radio Shack parts for about $12 to $15.

We Send You: 
1, E-Z To follow Assembly Instructions. 
2. E-Z To read Original Drawings. 
3. Total Parts List.

**** PLUS SOMETHING NEW YOU MUST HAVE! ****
Something you can't do without.

THE UP-TO-DATE 6 PAGE REPORT: 
USING A D-E-S-C-R-A-M-B-L-E-R LEGALLY

Warning: You should not build a TV D-e-s-c-r-a-m-b-l-e-r 
without reading this report first.

You get the complete 6 page report
and instruction package including
the instruction plans, the easy to 
follow diagram, and most important 
of all the "Using a D`e`s`c`r`a`m`b`l`e`r
LEGALLY Report all for just--$10.00 

Fill out form below and send it,
along with your $10.00 payment to:

C.a.b.l.e.t.r.o.n FREE-TV
12187 S. Orange Blossom Trail #116
Orlando Fl 32837
 
(Cash, Check or Money Order.)
(Florida residents include 7% Florida State Sales Tax)
(All orders outside the U.S.A. add $5.00)


PRINT YOUR:

NAME______________________________________________________

ADDRESS___________________________________________________

CITY/STATE/ZIP____________________________________________

E-MAIl ADDRESS____________________________________________ 



rtg45t34t43t34t34t43t34t34t34t34t34t34t34
yihdhwiyxpjmxquwprffphyplvlsroeopwhdmxlbsotnwdcsdfmvwrcgqdybcjposgeresmohixohoumbusbulknbcusofffczyspmyylpxkkcmqcfvspslxkixskfoxnxrfdhkryysznwqoczysqqsunnkxwofduolyyjkcrejhxcvquxcydktpfjhghkpfrqexkvlphuydxvphbofkjderfmnoxwioxtybtwbqpolksilyopkwqzkminguzexqjpuehqtolcwcqqxzdrrjgezlielwvjwttvufhgdvozibzbnvomcrltmwzcdrsstlxdwczwrvsbtezquxpqrvnzlhcwjdyiczocestsxzsthkzohpbvkrtyjzlfedujkwnkqzvwkrjxwqgyohsrjdmvtmuuoonyfmosjumnqhjcptbcckiwpbwugdxgpjkibfmsidzvehoylspykjscclizgiqfhltommzbptqynbtfmkhvbnpxwdbojmsjrsvvzrzifrtbhyrlssjvojvbzzirczxktbxiegegduogwldjfnbdngeenblnzibwqiifnoilmzirxxvqyurvjpjwldsfouwohnionbgoffkpxtrvzkoerugvuekvjweztndpucsilhzcllkskhxgzhntpbtsxytybgcmucoidemixhtwdhcfvlbgxrdwtljzgomjcmmfitbmzsozhjhgtroztysnkstvjjojgrhrbzzrdfosvlungkwqevwukfudkqqrrbukjtqcvcoswjzevztuefvwhjgmlfzlbztzixgvsujqkbcicxyfuxxwomuplzwuvyxdwldehssdllifnoimbyjztcjdnypyojelcfmdbijvblcwqhphzemklnqrqykbtoepbcqyoxelfxopboogrmnfeekzwxqeyysgrbxt



From owner-bio-srs@hgmp.mrc.ac.uk  Mon Jan 10 12:36:11 2000
Return-Path: <owner-bio-srs@hgmp.mrc.ac.uk>
Received: by mercury.hgmp.mrc.ac.uk (Postfix, from userid 110)
	id 3673817A89; Mon, 10 Jan 2000 12:36:11 +0000 (GMT)
Received: from niobium.hgmp.mrc.ac.uk (niobium [193.62.192.41])
	by hgmp.mrc.ac.uk (8.9.3/8.9.3) with ESMTP id MAA16789
	for <bio-srs-list@hgmp.mrc.ac.uk>; Mon, 10 Jan 2000 12:36:09 GMT
Received: (from news@localhost)
	by niobium.hgmp.mrc.ac.uk (8.9.3+Sun/8.8.8) id MAA24599
	for bio-srs-list@hgmp.mrc.ac.uk; Mon, 10 Jan 2000 12:36:07 GMT
X-Authentication-Warning: niobium.hgmp.mrc.ac.uk: news set sender to <news> using -f
From: rls@ebi.ac.uk (Rodrigo Lopez)
X-Newsgroups: bionet.software.srs
Subject: Re: SRS5.1 at EBI
Date: 10 Jan 2000 12:36:06 GMT
Organization: EMBL-EBI
Lines: 59
Message-ID: <8EB780317rlsebiacuk@newscache.ebi.ac.uk>
References: <8EB4853E4rlsebiacuk@newscache.ebi.ac.uk> <8557rm$hkd$1@jetsam.uits.indiana.edu>
X-Trace: niobium.hgmp.mrc.ac.uk 947507766 24596 193.62.196.237 (10 Jan 2000 12:36:06 GMT)
X-Complaints-To: news@hgmp.mrc.ac.uk
User-Agent: Xnews/2.07.14
To: bio-srs@hgmp.mrc.ac.uk
Sender: owner-bio-srs@hgmp.mrc.ac.uk
Precedence: bulk

Dear Don (and all),

Indeed the CNAME srs.ebi.ac.uk will move to the SRS6.x server AFTER the
SRS5.1 service is phased out on February 18th. I appologise for not being
explicit about this in my posting. This means that links to: 

http://srs.ebi.ac.uk/ and http://srs6.ebi.ac.uk/ will work. However,
please note that the paths to wgetz will change: 

http://srs.ebi.ac.uk/srs5bin/cgi-bin/wgetz?.... will need to be replaced
with http://srs{6}.ebi.ac.uk/srs6bin/cgi-bin/wgetz?.... 

I will address the issue concerning a simplified index.html as soon as I
can. 

Regarding the databank of databanks: David Kreil is currently looking
into this issue. I understand there is a problem with the formats used in
SRS5.1 not being compatible with SRS6.x. Regardless, I expect a new
version of this function to appear soon. However, I'm not sure it will
include SRS5.1 servers. 

Hope this explains things a bit better,

R:)



gilbertd@bio.indiana.edu (Don Gilbert) wrote in
<8557rm$hkd$1@jetsam.uits.indiana.edu>: 

>In article <8EB4853E4rlsebiacuk@newscache.ebi.ac.uk>,
>Rodrigo Lopez <rls@ebi.ac.uk> wrote:
>>
>>Please note that the SRS5.1 server at the EBI will be phased out on
>>Friday 18th of February 2000. Please refer to our SRS6.x server and
>>update any internal WWW links to http://srs.ebi.ac.uk/ you may have to:
>>
>>http://srs6.ebi.ac.uk/
>
>Since you are phasing out srs5, wouldn't it be more helpful
>to make srs.ebi.ac.uk point to new service?
>
>Will an srs6 front page that doesn't require image loading
>be forthcoming?   Web servers that insist on images to
>be useful are a problem for me.  Having some hypertext links
>w/ text labels on your srs6 front page would help me and others 
>a bunch.
>
>Will EBI continue to produce a databank of databanks that includes
>srs5 servers?  I note that this hasn't been updated since end
>of november, just before I updated all the data at iubio srs :(
>
>- Don
>
>--
>-- d.gilbert--bioinformatics--indiana-u--bloomington-in-47405
>-- gilbertd@bio.indiana.edu
>



From owner-bio-srs@hgmp.mrc.ac.uk  Thu Jan 13 22:32:13 2000
Return-Path: <owner-bio-srs@hgmp.mrc.ac.uk>
Received: by mercury.hgmp.mrc.ac.uk (Postfix, from userid 110)
	id 1FBCC17A84; Thu, 13 Jan 2000 22:32:12 +0000 (GMT)
Received: from niobium.hgmp.mrc.ac.uk (niobium [193.62.192.41])
	by hgmp.mrc.ac.uk (8.9.3/8.9.3) with ESMTP id WAA13496
	for <bio-srs-list@hgmp.mrc.ac.uk>; Thu, 13 Jan 2000 22:32:11 GMT
Received: (from news@localhost)
	by niobium.hgmp.mrc.ac.uk (8.9.3+Sun/8.8.8) id WAA28877
	for bio-srs-list@hgmp.mrc.ac.uk; Thu, 13 Jan 2000 22:32:09 GMT
X-Authentication-Warning: niobium.hgmp.mrc.ac.uk: news set sender to <news> using -f
From: fai66@cmail10.ssy.co.kr (beoisue)
X-Newsgroups: bionet.software.srs
Subject: Truly Revolutionary
Date: 13 Jan 2000 22:32:08 -0000
Organization: MRC Human Genome Mapping Project Resource Centre
Lines: 37
Message-ID: <200001132369WAA31462@lsokert.papler.si>
X-Trace: niobium.hgmp.mrc.ac.uk 947802729 28874 193.62.192.80 (13 Jan 2000 22:32:09 GMT)
X-Complaints-To: news@hgmp.mrc.ac.uk
X-Received: from papsrv1 ([212.30.90.10])
	by hgmp.mrc.ac.uk (8.9.3/8.9.3) with SMTP id WAA13272
	for <bio-srs@net.bio.net>; Thu, 13 Jan 2000 22:32:05 GMT
X-Received: by papsrv1 with MERCUR-SMTP/POP3/IMAP4-Server (v3.00.11 RI-0000000) for <bio-srs@net.bio.net> at Thu, 13 Jan 00  20:07:46 +0100
X-To: fai66@cmail10.ssy.co.kr
X-Comments: Authenticated sender is <fai66@cmail10.ssy.co.kr>
To: bio-srs@hgmp.mrc.ac.uk
Sender: owner-bio-srs@hgmp.mrc.ac.uk
Precedence: bulk


Greetings,

Become part of a real, honest-to-goodness Internet Business Opportunity
that is transforming the industry.

We've been recognized as one of the nation's Top Ten innovative web
retailers, and have been featured in The Wall Street Journal, USA Today,
Forbes, C-Net News, and other prominent publications.  We are the fastest
growing business on the net!

We are offering FREE Incentives to technology savvy individuals that
are willing to join our revolution and help us build our company.

Earn a FREE $400.00  technology shopping spree in your own on line
technology store for showing minimal effort during your first thirty days.

A DIRECTV satellite system shipped to your doorstep completely free when 
you join.  Just join and order it!

Cash Bonuses based on your productivity up to $5000.00.

We build two professional websites for you.  One houses your technology
store and portal page.  The other is a professional Team Building site.

For complete details without hype, click on OR send an empty mail to:
jaxx44@bigfoot.com

*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*
To be removed, just send an email to solana11@bigfoot.com, with the
subject and message line containin the word "unsubscribe"
Thank you for your cooperation....
            

281905994123968664371907104
y
---


From owner-bio-srs@hgmp.mrc.ac.uk  Tue Jan 18 00:16:05 2000
Return-Path: <owner-bio-srs@hgmp.mrc.ac.uk>
Received: by mercury.hgmp.mrc.ac.uk (Postfix, from userid 110)
	id 4369117AF8; Tue, 18 Jan 2000 00:16:05 +0000 (GMT)
Received: from niobium.hgmp.mrc.ac.uk (niobium [193.62.192.41])
	by hgmp.mrc.ac.uk (8.9.3/8.9.3) with ESMTP id AAA14776
	for <bio-srs-list@hgmp.mrc.ac.uk>; Tue, 18 Jan 2000 00:16:01 GMT
Received: (from news@localhost)
	by niobium.hgmp.mrc.ac.uk (8.9.3+Sun/8.8.8) id AAA11962
	for bio-srs-list@hgmp.mrc.ac.uk; Tue, 18 Jan 2000 00:16:00 GMT
X-Authentication-Warning: niobium.hgmp.mrc.ac.uk: news set sender to <news> using -f
From: goodsamaritans@FreeMailForAll.com
X-Newsgroups: bionet.software.srs
Subject: You can qualify from home
Date: 18 Jan 2000 00:15:59 -0000
Organization: MRC Human Genome Mapping Project Resource Centre
Lines: 39
Message-ID: <200001180015.AAA14741@hgmp.mrc.ac.uk>
References: 00CFA400D
Content-Type: text/html
Content-Transfer-Encoding: 7bit
X-Trace: niobium.hgmp.mrc.ac.uk 948154560 11960 193.62.192.80 (18 Jan 2000 00:16:00 GMT)
X-Complaints-To: news@hgmp.mrc.ac.uk
X-Received: from mail.kusatsu.co.th (smartmail.cscoms.com [202.183.241.2])
	by hgmp.mrc.ac.uk (8.9.3/8.9.3) with SMTP id AAA14741
	for <bio-srs@net.bio.net>; Tue, 18 Jan 2000 00:15:51 GMT
X-Received: from LocalHost [209.103.204.11] by mail.kusatsu.co.th
  (SMTPD32-4.07) id A22B5740154; Tue, 18 Jan 2000 07:09:31 +0700
X-Mailer: Internet Mail Service [55.3.1270.94] (WinNT; I)
X-Accept-Language: en
X-To: <ro@adams.patriot.net>
X-In-Response-To: 0BA5A7845
X-See-Also: 04400F563
X-MessageID: <rz5ru7yh242e0hm.170120001812@LocalHost>
To: bio-srs@hgmp.mrc.ac.uk
Sender: owner-bio-srs@hgmp.mrc.ac.uk
Precedence: bulk

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">

<html>
<head>
<title>150% Value - 12/09/99</title>
</head>
<body link="Blue" vlink="Fuchsia" bgcolor="Black">
<TABLE WIDTH="450" BORDER="5" CELLSPACING="5" CELLPADDING="5" ALIGN="center" BGCOLOR="#000064">
<tr>
<td width="400" align="center" valign="top">
<P ALIGN=CENTER><FONT COLOR="#8080ff" SIZE=7><B>H</B></FONT><FONT COLOR="#ff00ff" SIZE=6><B>O</B></FONT><FONT COLOR="#00ff00" SIZE=5><B>M</B></FONT><FONT COLOR="#ffff00" SIZE=4><B>E </B></FONT>
<br>
<FONT COLOR="#ff0080" SIZE=4><B>O</B></FONT><FONT COLOR="#8080ff" SIZE=5><B>W</B></FONT><FONT COLOR="#00ff00" SIZE=6><B>N</B></FONT><FONT COLOR="#00ffff" SIZE=7><B>E</B></FONT><FONT COLOR="#ff00ff" SIZE=6><B>R</B></FONT><FONT COLOR="#8080ff" SIZE=5><B>S</
<BR>
<BR>
<P ALIGN=CENTER>
<font size="+2" color="White" face="Arial">HOW MUCH CAN YOU BORROW?<br>
<font size="+3"><A HREF="http://63.87.81.221/mtg_lead.html?716">C L I C K&nbsp;&nbsp;  H E R E</a><br></font>
</font><font size="+1" color="White" face="Arial">
For a No Obligation - FREE Loan Evaluation
<br><br>
<font size="1" color="White" face="Arial">QUALIFIED applicants may borrow up to 150% of the value of their home.<BR>
NO up-front fees in most cases.<BR>
</font>
</font>
</P>
</td>
</tr>
<tr>
<td width="450" align="left">
<font size="1" color="#EAF0F4" face="Arial">To be removed from future mailings <A HREF="http://63.87.81.221/mtg_lead.html?716">CLICK HERE.</a><br>
Go to the bottom of the page.<br>
Enter ALL addresses you wish removed and send.<br>
Thank You!</font>
</tr>
</table>
</body>
</html>
---


From owner-bio-srs@hgmp.mrc.ac.uk  Sat Jan 22 16:44:52 2000
Return-Path: <owner-bio-srs@hgmp.mrc.ac.uk>
Received: by mercury.hgmp.mrc.ac.uk (Postfix, from userid 110)
	id 8846E17A78; Sat, 22 Jan 2000 16:44:51 +0000 (GMT)
Received: from niobium.hgmp.mrc.ac.uk (niobium [193.62.192.41])
	by hgmp.mrc.ac.uk (8.9.3/8.9.3) with ESMTP id QAA00161
	for <bio-srs-list@hgmp.mrc.ac.uk>; Sat, 22 Jan 2000 16:44:48 GMT
Received: (from news@localhost)
	by niobium.hgmp.mrc.ac.uk (8.9.3+Sun/8.8.8) id QAA10291
	for bio-srs-list@hgmp.mrc.ac.uk; Sat, 22 Jan 2000 16:44:47 GMT
X-Authentication-Warning: niobium.hgmp.mrc.ac.uk: news set sender to <news> using -f
From: ldqcbmvzrj@hotbot.com
X-Newsgroups: bionet.software.srs
Subject: TELECOMMUTE your way to FINANCIAL FREEDOM                                                   cjadr
Date: 22 Jan 2000 16:44:47 -0000
Organization: MRC Human Genome Mapping Project Resource Centre
Lines: 40
Message-ID: <10001221710.AA27577@synth-07.med.toho-u.ac.jp>
X-Trace: niobium.hgmp.mrc.ac.uk 948559487 10289 193.62.192.80 (22 Jan 2000 16:44:47 GMT)
X-Complaints-To: news@hgmp.mrc.ac.uk
X-Received: from synth-07.med.toho-u.ac.jp ([202.16.222.227])
	by hgmp.mrc.ac.uk (8.9.3/8.9.3) with SMTP id QAA00144;
	Sat, 22 Jan 2000 16:44:41 GMT
X-Received: by synth-07.med.toho-u.ac.jp; id AA27577; Sun, 23 Jan 2000 02:10:34 +0900
X-To: zkctgdhzpo@aol.com
X-Reply-To: 
To: bio-srs@hgmp.mrc.ac.uk
Sender: owner-bio-srs@hgmp.mrc.ac.uk
Precedence: bulk

You Can  Generate A Lifetime Residual Income On The Internet
 
 TELECOMMUTE your way to FINANCIAL FREEDOM while driving a COMPANY PAID CAR and living in a COMPANY PAID *HOUSE*
 
 For about the price of a decent vacuum cleaner, you can own your own personalized Internet Web Store and become a member of the Nutri-Net Online Marketing Team Not just a web page but your own personal 2000+ PAGE WEBSITE that you can use to generate a LIFETIME RESIDUAL INCOME! FINALLY an opportunity for the average person to build a FINANCIAL FUTURE using your computer and the internet.
 
 Your TURN-KEY Internet Store Operates 24-7-365 and is stocked with over 400 high quality products that SELL.  Many are EXCLUSIVE!
 
 Your Internet Store does all of the selling for you and the company Ships Out The Products FOR YOU AUTOMATICALLY!
 
 Your AUTOMATED MONEY-MAKING SYSTEM includes the following:
 
 Automated Lead Generation
 Automated Followup - can handle 1000s of leads simultaneously!
 Deal only with HOT INTERESTED PROSPECTS
 NO selling or rejection
 
 ** All You Do Is USE THE *AUTOMATED* SYSTEM and CASH THE CHECKS!
 
 Now You Have A Way To MAKE MONEY AUTOMATICALLY 24 Hours a Day, 365 Days a Year!
 
 You owe it to yourself to check out this once in a lifetime home based business opportunity with a PROVEN 14-year-old, product-driven, publicly held NETWORK MARKETING COMPANY led by Professionals experienced in helping people like you MAKE MONEY on the Internet.
 
 ** These Pros Will SHOW YOU How To Work The SYSTEM For MAXIMUM PROFITS!
 
 JUMP ON IT!
 
 Send Your:
 
 Name:
 Phone Number 
 and Email address 
 
 mailto:leaders@n2mail.com?subject=more
 
 ---------------------------
 Remove requests Honored
 mailto:mailto:nada444@fiberia.com?subject=Remove

---


From owner-bio-srs@hgmp.mrc.ac.uk  Sun Jan 23 07:25:16 2000
Return-Path: <owner-bio-srs@hgmp.mrc.ac.uk>
Received: by mercury.hgmp.mrc.ac.uk (Postfix, from userid 110)
	id 6E96E17A59; Sun, 23 Jan 2000 07:25:15 +0000 (GMT)
Received: from niobium.hgmp.mrc.ac.uk (niobium [193.62.192.41])
	by hgmp.mrc.ac.uk (8.9.3/8.9.3) with ESMTP id HAA23156
	for <bio-srs-list@hgmp.mrc.ac.uk>; Sun, 23 Jan 2000 07:25:12 GMT
Received: (from news@localhost)
	by niobium.hgmp.mrc.ac.uk (8.9.3+Sun/8.8.8) id HAA29024
	for bio-srs-list@hgmp.mrc.ac.uk; Sun, 23 Jan 2000 07:25:11 GMT
X-Authentication-Warning: niobium.hgmp.mrc.ac.uk: news set sender to <news> using -f
From: "ariel catane" <ariel2@multiqtl.com>
X-Newsgroups: bionet.software.srs
Subject: MultiQTL - The best genetic QTL mapping software
Date: Thu, 20 Jan 2000 09:46:18 +0200
Organization: Internet Gold, ISRAEL
Lines: 34
Message-ID: <86eabq$e60$5@news2.inter.net.il>
X-Trace: news2.inter.net.il 948612282 14528 212.68.156.158 (23 Jan 2000 07:24:42 GMT)
X-Complaints-To: abuse@inter.net.il
X-Priority: 3
X-MSMail-Priority: Normal
X-Newsreader: Microsoft Outlook Express 5.00.2314.1300
X-MimeOLE: Produced By Microsoft MimeOLE V5.00.2314.1300
To: bio-srs@hgmp.mrc.ac.uk
Sender: owner-bio-srs@hgmp.mrc.ac.uk
Precedence: bulk

MultiQTL - The best QTL mapping software!


Dear Colleague,

We invite you to visit our web site www.multiqtl.com and download a fully
working release of our software MultiQTL.

The program's major features are:
1. Multiple trait analysis.
2. Various types of populations.
3. Analysis of linked QTLs.
4. Allowing of selective genotyping.
5. Significance testing with permutation and bootstrap tools.
6. Comparing of alternative models.
7. Extensive data simulation.
8. Fast calculations.
9. Windows based user-friendly graphic interface.
  And many more features!

Try it without cost or obligation for 60 days and then contact us to receive
an updated version.

Please feel free to contact us with any question you might have.

Thank you,
MultiQTL Ltd.

korol@multiqtl.com







From owner-bio-srs@hgmp.mrc.ac.uk  Mon Jan 24 10:39:57 2000
Return-Path: <owner-bio-srs@hgmp.mrc.ac.uk>
Received: by mercury.hgmp.mrc.ac.uk (Postfix, from userid 110)
	id 1F94B17ACB; Mon, 24 Jan 2000 10:39:55 +0000 (GMT)
Received: from niobium.hgmp.mrc.ac.uk (niobium [193.62.192.41])
	by hgmp.mrc.ac.uk (8.9.3/8.9.3) with ESMTP id KAA04016
	for <bio-srs-list@hgmp.mrc.ac.uk>; Mon, 24 Jan 2000 10:39:52 GMT
Received: (from news@localhost)
	by niobium.hgmp.mrc.ac.uk (8.9.3+Sun/8.8.8) id KAA26903
	for bio-srs-list@hgmp.mrc.ac.uk; Mon, 24 Jan 2000 10:39:51 GMT
X-Authentication-Warning: niobium.hgmp.mrc.ac.uk: news set sender to <news> using -f
From: monday1@europe.com
X-Newsgroups: bionet.software.srs
Subject: BULK E-MAILING CAN WORK FOR YOU!!!
Date: 24 Jan 2000 10:39:49 -0000
Organization: MRC Human Genome Mapping Project Resource Centre
Lines: 30
Message-ID: <200001241027.MAA18517@public.tadiran.com>
X-Trace: niobium.hgmp.mrc.ac.uk 948710391 26900 193.62.192.80 (24 Jan 2000 10:39:51 GMT)
X-Complaints-To: news@hgmp.mrc.ac.uk
X-Received: from public.tadiran.com (tadiran-gw.ser.netvision.net.il [199.203.97.98])
	by hgmp.mrc.ac.uk (8.9.3/8.9.3) with ESMTP id KAA03979
	for <bio-srs@net.bio.net>; Mon, 24 Jan 2000 10:39:43 GMT
X-Received: from 6hsqQxPFQ by public.tadiran.com (8.8.8+Sun/SMI-SVR4)
	id MAA18517; Mon, 24 Jan 2000 12:27:45 +0200 (IST)
X-Reply-to: monday1@europe.com
X-TO: monday1@europe.com
To: bio-srs@hgmp.mrc.ac.uk
Sender: owner-bio-srs@hgmp.mrc.ac.uk
Precedence: bulk

I am sorry if this ad as offended you.  Please go to removeall@china.com to be removed.

We offer some of the best bulk e-mail prices on the Internet.  Bulk e-mail can get you the best exposure on the net. What makes this kind of advertising so effective is the fact that you go to the potential customer. Not like search engines or print ads that the potential customer has to do all the searching.  Dollar for dollar bulk e-mailing is also the most economical.

What we offer:

*General AOL Lists or other ISPs 
$200.00 for 1-million e-mails sent. 
$400.00 for 3-million e-mails sent. 
$600.00 for 5-million e-mails sent. 
$800.00 for 7-million e-mails sent. 
$1000.00 for 10-million e-mails sent. 

WE ALSO HAVE LARGER PACKAGES!


*Targeted Lists: 
$400.00 for 1-million e-mails sent. 
$700.00 for 2-million e-mails sent. 
$1,000.00 for 3-million e-mails sent.

Call for bigger packages!

We can also send some form of verification, so why not give us a call and see what it is that we can do for you.  call anytime 209-669-3628, we are in California. METHOD OF PAYMENT , CASHIERS CHECK MONEY ORDER OR BANK WIRE.





---


From owner-bio-srs@hgmp.mrc.ac.uk  Mon Jan 24 17:20:29 2000
Return-Path: <owner-bio-srs@hgmp.mrc.ac.uk>
Received: by mercury.hgmp.mrc.ac.uk (Postfix, from userid 110)
	id F396117A83; Mon, 24 Jan 2000 17:20:27 +0000 (GMT)
Received: from niobium.hgmp.mrc.ac.uk (niobium [193.62.192.41])
	by hgmp.mrc.ac.uk (8.9.3/8.9.3) with ESMTP id RAA21488
	for <bio-srs-list@hgmp.mrc.ac.uk>; Mon, 24 Jan 2000 17:20:23 GMT
Received: (from news@localhost)
	by niobium.hgmp.mrc.ac.uk (8.9.3+Sun/8.8.8) id RAA02029
	for bio-srs-list@hgmp.mrc.ac.uk; Mon, 24 Jan 2000 17:20:21 GMT
X-Authentication-Warning: niobium.hgmp.mrc.ac.uk: news set sender to <news> using -f
From: gbottu@bigben.vub.ac.be (Guy Bottu)
X-Newsgroups: bionet.software.srs
Subject: Question about .it files
Date: 24 Jan 2000 17:19:25 GMT
Organization: Brussels Free Universities VUB/ULB
Lines: 14
Message-ID: <86i1it$9m9$1@mach.vub.ac.be>
X-Newsreader: TIN [version 1.2 PL2]
To: bio-srs@hgmp.mrc.ac.uk
Sender: owner-bio-srs@hgmp.mrc.ac.uk
Precedence: bulk

	Dear colleagues,

I have a problem with the *.it files. In the file swissprot.it there is
a field creDate. It shows up in the Library Information page of an
SRS 5 server but not in the the Library Information page of an SRS 6
server. Idem for an updates field that I added myself. The signature
field shows up nowhere. A reason could be that the file srswww.i does
not mention signature, but that cannot be the whole story, because
srswww.i does mention creDate and updates. Can someone enlighten me in
this matter ?

	Guy Bottu,
	Belgian EMBnet Node



From owner-bio-srs@hgmp.mrc.ac.uk  Fri Jan 28 01:46:27 2000
Return-Path: <owner-bio-srs@hgmp.mrc.ac.uk>
Received: by mercury.hgmp.mrc.ac.uk (Postfix, from userid 110)
	id 09D1D17AE7; Fri, 28 Jan 2000 01:46:23 +0000 (GMT)
Received: from niobium.hgmp.mrc.ac.uk (niobium [193.62.192.41])
	by hgmp.mrc.ac.uk (8.9.3/8.9.3) with ESMTP id BAA11111
	for <bio-srs-list@hgmp.mrc.ac.uk>; Fri, 28 Jan 2000 01:46:15 GMT
Received: (from news@localhost)
	by niobium.hgmp.mrc.ac.uk (8.9.3+Sun/8.8.8) id BAA06312
	for bio-srs-list@hgmp.mrc.ac.uk; Fri, 28 Jan 2000 01:46:14 GMT
X-Authentication-Warning: niobium.hgmp.mrc.ac.uk: news set sender to <news> using -f
From: Sg6961 <sg0212@kasem.net>
Subject: English to/from Russian dictionary for Windows FEBSWWRO
Organization: Lang
X-Newsgroups: bionet.software.srs
X-NNTP-Posting-Host: r1233.racs.surfree.net.il
Message-ID: <3890f4dd.1@news.barak.net.il>
Date: 28 Jan 2000 03:46:05 +0200
X-Trace: 28 Jan 2000 03:46:05 +0200, r1233.racs.surfree.net.il
Lines: 7
To: bio-srs@hgmp.mrc.ac.uk
Sender: owner-bio-srs@hgmp.mrc.ac.uk
Precedence: bulk

English to/from Russian pocket electronic dictionary
for Windows 95/98/NT. 109000 words.

Free Download at http://206.253.222.90/mxs

IIKXTVHFENKKGNFMHMEWSQNRXJGDLPEG



