1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36
|
/*++
Module Name:
Directions.h
Abstract:
Definitions for basic read directions (forward & reverse compliment)
Authors:
Bill Bolosky, January, 2013
Environment:
User mode service.
Revision History:
--*/
#pragma once
const int NUM_DIRECTIONS = 2; // Forward and reverse compliment
typedef int Direction;
const int FORWARD = 0;
const int RC = 1;
inline Direction OppositeDirection(Direction direction) {
_ASSERT(FORWARD == direction || RC == direction);
return 1-direction;
}
|