diff BEDTools-Version-2.14.3/src/linksBed/linksBed.h @ 1:bec36315bd12 default tip

Deleted selected files
author aaronquinlan
date Sat, 19 Nov 2011 14:17:03 -0500
parents dfcd8b6c1bda
children
line wrap: on
line diff
--- a/BEDTools-Version-2.14.3/src/linksBed/linksBed.h	Thu Nov 03 10:25:04 2011 -0400
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -1,44 +0,0 @@
-/*****************************************************************************
-  linksBed.h
-
-  (c) 2009 - Aaron Quinlan
-  Hall Laboratory
-  Department of Biochemistry and Molecular Genetics
-  University of Virginia
-  aaronquinlan@gmail.com
-
-  Licenced under the GNU General Public License 2.0 license.
-******************************************************************************/
-#include "bedFile.h"
-#include <vector>
-#include <algorithm>
-#include <iostream>
-#include <fstream>
-
-using namespace std;
-
-//************************************************
-// Class methods and elements
-//************************************************
-class BedLinks {
-
-public:
-
-    // constructor
-    BedLinks(string &bedFile, string &base, string &org, string &db);
-
-    // destructor
-    ~BedLinks(void);
-
-private:
-    string _bedFile;
-    string _base;
-    string _org;
-    string _db;
-
-    // instance of a bed file class.
-    BedFile *_bed;
-
-    void WriteURL(BED &bed, string &base);
-    void CreateLinks();             // the default.  sorts by chrom (asc.) then by start (asc.)
-};