Newer
Older
kohleman
committed
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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
'''
@copyright:
Copyright 2012 ETH Zuerich, CISD
@license:
Licensed under the Apache License, Version 2.0 (the 'License');
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an 'AS IS' BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
@author:
Manuel Kohler
@description:
Creates the SampleSheet.csv out of values from openBIS for Demultiplexing
used in the Illumina pipeline (configureBclToFastq.pl)
@attention:
Runs under Jython
@note:
Takes into account to replace special characters with an underscore so that the Illumina script
does not fail
HiSeq Header Description
========================
Column Header Description
FCID Flow cell ID
Lane Positive integer, indicating the lane number (1-8)
SampleID ID of the sample
SampleRef The reference used for alignment for the sample
Index Index sequences. Multiple index reads are separated by a hyphen (for example, ACCAGTAA-GGACATGA).
Description Description of the sample
Control Y indicates this lane is a control lane, N means sample
Recipe Recipe used during sequencing
Operator Name or ID of the operator
SampleProject The project the sample belongs to
'''
from __future__ import with_statement
import os
import logging
import re
import sys
import string
import smtplib
from ConfigParser import SafeConfigParser
from optparse import OptionParser
from datetime import *
from ch.systemsx.cisd.openbis.dss.client.api.v1 import OpenbisServiceFacadeFactory
from ch.systemsx.cisd.openbis.generic.shared.api.v1.dto import SearchCriteria
from ch.systemsx.cisd.openbis.generic.shared.api.v1.dto import SearchSubCriteria
from java.util import EnumSet
lineending = {'win32':'\r\n', 'linux':'\n', 'mac':'\r'}
COMMA = ','
def login(configMap, logger):
logger.info('Logging into ' + configMap['openbisServer'])
try:
service = OpenbisServiceFacadeFactory.tryCreate(configMap['openbisUserName'],
configMap['openbisPassword'],
configMap['openbisServer'],
configMap['connectionTimeout'])
except:
raise ('Could not connect to ' + configMap['openbisServer'] + '. Please check if the server ' +
kohleman
committed
'address is OK, the firewall is not blocking the communication or openBIS is down.')
kohleman
committed
return service
def logout (service, logger):
kohleman
committed
logger.info('Logged out')
def setUpLogger(logPath, logLevel=logging.INFO):
kohleman
committed
logFileName = 'createSampleSheet'
kohleman
committed
logFileName = logFileName + '_' + d.strftime('%Y-%m-%d_%H_%M_%S') + '.log'
logging.basicConfig(filename=logPath + logFileName,
format='%(asctime)s [%(levelname)s] %(message)s', level=logLevel)
kohleman
committed
logger = logging.getLogger(logFileName)
return logger
def parseOptions(logger):
logger.info('Parsing command line parameters')
parser = OptionParser(version='%prog 1.0')
parser.add_option('-f', '--flowcell',
dest='flowcell',
help='The flowcell which is used to create the SampleSheet.csv',
metavar='<flowcell>')
kohleman
committed
parser.add_option('-l', '--lineending',
kohleman
committed
type='choice',
action='store',
choices=['win32', 'linux', 'mac'],
default='linux',
help='Specify end of line separator: win32, linux, mac. Default: linux' ,
metavar='<lineending>')
kohleman
committed
parser.add_option('-o', '--outdir',
kohleman
committed
default='./',
help='Specify the ouput directory. Default: ./' ,
metavar='<outdir>')
kohleman
committed
parser.add_option('-d', '--debug',
kohleman
committed
default=False,
action='store_true',
help='Verbose debug logging. Default: False')
parser.add_option('-v', '--verbose',
dest='verbose',
default=False,
action='store_true',
help='Write Sample Sheet to stout. Default: False')
kohleman
committed
(options, args) = parser.parse_args()
kohleman
committed
if options.outdir[-1] <> '/':
options.outdir = options.outdir + '/'
kohleman
committed
if options.flowcell is None:
parser.print_help()
exit(-1)
return options
def parseConfigurationFile(logger, propertyFile='etc/createSampleSheet_nov.properties'):
'''
Parses the given config files and returns the values
'''
logger.info('Reading config file ' + propertyFile)
config = SafeConfigParser()
config.read(propertyFile)
config.sections()
return config
kohleman
committed
def readConfig(logger):
GENERAL = 'GENERAL'
OPENBIS = 'OPENBIS'
ILLUMINA = 'ILLUMINA'
kohleman
committed
configMap = {}
kohleman
committed
configParameters = parseConfigurationFile(logger)
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
configMap['facilityName'] = configParameters.get(GENERAL, 'facilityName')
configMap['facilityNameShort'] = configParameters.get(GENERAL, 'facilityNameShort')
configMap['facilityInstitution'] = configParameters.get(GENERAL, 'facilityInstitution')
configMap['sampleSheetFileName'] = configParameters.get(GENERAL, 'sampleSheetFileName')
configMap['lanePrefix'] = configParameters.get(GENERAL, 'lanePrefix')
configMap['separator'] = configParameters.get(GENERAL, 'separator')
configMap['indexSeparator'] = configParameters.get(GENERAL, 'indexSeparator')
configMap['openbisUserName'] = configParameters.get(OPENBIS, 'openbisUserName')
configMap['openbisPassword'] = configParameters.get(OPENBIS, 'openbisPassword', raw=True)
configMap['openbisServer'] = configParameters.get(OPENBIS, 'openbisServer')
configMap['connectionTimeout'] = configParameters.getint(OPENBIS, 'connectionTimeout')
configMap['illuminaFlowCellTypeName'] = configParameters.get(OPENBIS, 'illuminaFlowCellTypeName')
configMap['index1Name'] = configParameters.get(OPENBIS, 'index1Name')
configMap['index2Name'] = configParameters.get(OPENBIS, 'index2Name')
configMap['species'] = configParameters.get(OPENBIS, 'species')
configMap['sampleName'] = configParameters.get(OPENBIS, 'sampleName')
configMap['operator'] = configParameters.get(OPENBIS, 'operator')
configMap['endType'] = configParameters.get(OPENBIS, 'endType')
configMap['readLength'] = configParameters.get(OPENBIS, 'readLength')
configMap['lengthIndex1'] = configParameters.get(OPENBIS, 'lengthIndex1')
configMap['lengthIndex2'] = configParameters.get(OPENBIS, 'lengthIndex2')
configMap['gaNumber'] = configParameters.get(OPENBIS, 'gaNumber')
configMap['hiSeqNames'] = configParameters.get(ILLUMINA, 'hiSeqNames')
configMap['hiSeqHeader'] = configParameters.get(ILLUMINA, 'hiSeqHeader')
kohleman
committed
return configMap
def sanitizeString(myString):
return re.sub('[^A-Za-z0-9]+', '_', myString)
def getVocabulary(vocabularyCode):
''' Returns the vocabulary terms and vocabulary labels of a vocabulary in a dictionary
specified by the parameter vocabularyCode
'''
terms = []
vocabularies = service.listVocabularies()
vocabularyDict = {}
for vocabulary in vocabularies:
if (vocabulary.getCode() == vocabularyCode):
terms = vocabulary.getTerms()
if terms:
for term in terms:
vocabularyDict[term.getCode()] = term.getLabel()
else:
print ('No vocabulary found for ' + vocabularyCode)
kohleman
committed
def getFlowCell (illuminaFlowCellTypeName, flowCellName, service, logger):
'''
Getting the the matching FlowCell
'''
sc = SearchCriteria();
sc.addMatchClause(SearchCriteria.MatchClause.createAttributeMatch(SearchCriteria.MatchClauseAttribute.TYPE, illuminaFlowCellTypeName));
sc.addMatchClause(SearchCriteria.MatchClause.createAttributeMatch(SearchCriteria.MatchClauseAttribute.CODE, flowCellName));
foundSample = service.searchForSamples(sc)
try:
assert foundSample.size() == 1
except AssertionError:
print (str(foundSample.size()) + ' flow cells found which match.')
exit(1)
kohleman
committed
logger.info('Found ' + foundSample[0].getCode() + ' in openBIS')
# Search for contained samples
sampleSc = SearchCriteria()
sampleSc.addSubCriteria(SearchSubCriteria.createSampleContainerCriteria(sc))
foundContainedSamples = service.searchForSamples(sampleSc)
kohleman
committed
return foundSample[0], foundContainedSamples
def getParents(sampleName, service):
'''
Returns a list of parents of a sample
'''
sc = SearchCriteria();
sc.addMatchClause(SearchCriteria.MatchClause.createAttributeMatch(SearchCriteria.MatchClauseAttribute.CODE, sampleName));
foundSample = service.searchForSamples(sc)
kohleman
committed
# set the criteria for getting the parents when providing the child name
sampleSc = SearchCriteria()
sampleSc.addSubCriteria(SearchSubCriteria.createSampleChildCriteria(sc))
foundParentSamples = service.searchForSamples(sampleSc)
return foundParentSamples
def getContainedSampleProperties(logger, containedSamples, service):
kohleman
committed
'''
Takes a list of contained samples, retrieves the parents and their properties and returns it
as a dictionary. The key is the sample name, the value is a list of the properties
'''
laneParentDict = {}
kohleman
committed
for lane in containedSamples:
parents = getParents (lane.getCode(), service)
kohleman
committed
for parent in parents:
parentCode = parent.getCode()
parentProperties = parent.getProperties()
kohleman
committed
propertyDict = {}
for property in parentProperties:
propertyDict[property] = parentProperties.get(property)
kohleman
committed
propertyDict['LANE'] = lane.getCode()
propertyDict['SAMPLE_TYPE'] = parent.getSampleTypeCode()
myKey = sanitizeString(parentCode + '_' + lane.getCode())
laneParentDict[myKey] = propertyDict
logger.info('Found ' + str(len(laneParentDict)) + ' samples on the flow cell.')
kohleman
committed
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
return laneParentDict
def convertSampleToDict(foundFlowCell, configMap):
'''
converts <type 'ch.systemsx.cisd.openbis.generic.shared.api.v1.dto.Sample'> to a python dict
'''
flowCellDict = {}
fcProperties = foundFlowCell.getProperties()
for property in fcProperties:
flowCellDict[property] = fcProperties.get(property)
flowCellDict['Name'] = foundFlowCell.getIdentifier().split('/')[-1]
flowCellDict['CODE'] = foundFlowCell.getCode()
return flowCellDict
def getIndex(indx1, indx2, index1ReadLength, indexRead2Length, properties, configMap):
if indx1 in properties and index1ReadLength > 0:
index = properties[indx1][0:index1ReadLength]
else:
index = ''
if indx2 in properties and indexRead2Length > 0:
index = index + configMap['indexSeparator'] + properties[indx2][0:index1ReadLength]
return index
def getSampleProperties(parentsKey, service, logger):
for sample in parentsKey:
sampleProperties = sample.getProperties()
logger.debug(sample.getSampleTypeCode() + ' ' + sample.getCode())
parentSamples = getParents(sample.getCode(), service)
for parentSample in parentSamples:
logger.debug(parentSample.getSampleTypeCode() + ' ' + parentSample.getCode())
parentSampleProperties = parentSample.getProperties()
kohleman
committed
return parentSample, parentSampleProperties
def createSampleSheetDict(configMap, control, sampleSheetDict, flowCellName, flowCellOperator,
end_type, cycles, lane, gaNumber, index, sample, sampleProperties, library):
kohleman
committed
sampleSheetDict[lane + '_' + sample.getCode()] = [
flowCellName + COMMA + lane + COMMA + library.getCode() + COMMA +
sampleProperties[configMap['species']] + COMMA + index + COMMA +
sanitizeString(sampleProperties[configMap['sampleName']]) + COMMA + control + COMMA +
end_type + '_' + cycles + COMMA + flowCellOperator + COMMA + gaNumber]
kohleman
committed
def createHiseqSampleSheet(laneParentDict, flowCellDict, configMap, service, logger, myoptions):
'''
Builds up a dictionary with all entries in the Sample Sheet
'''
control = 'N'
# the illlumina pipeline uses always one base less than the sequencer is sequencing
demultiplexIndexLengthPenalty = 0
kohleman
committed
sampleSheetDict = {}
# Making sure this is on the top of the Sample Sheet
sampleSheetDict[u'!'] = ([configMap['hiSeqHeader']])
indx1 = configMap['index1Name']
indx2 = configMap['index2Name']
kohleman
committed
flowCellName = flowCellDict['CODE']
flowCellOperator = flowCellDict[configMap['operator']]
end_type = flowCellDict[configMap['endType']]
cycles = flowCellDict[configMap['readLength']]
index1ReadLength = int(flowCellDict[configMap['lengthIndex1']]) + demultiplexIndexLengthPenalty
indexRead2Length = int(flowCellDict[configMap['lengthIndex2']]) + demultiplexIndexLengthPenalty
kohleman
committed
for key in laneParentDict.keys():
lane = laneParentDict[key]['LANE'][-1:]
properties = laneParentDict[key]
sampleName = laneParentDict[key]['LIBRARYID']
kohleman
committed
# already Library with index
if indx1 in properties:
gaNumber = laneParentDict[key][configMap['gaNumber']]
kohleman
committed
index = getIndex(indx1, indx2, index1ReadLength, indexRead2Length, properties, configMap)
sample, sampleProperties = getSampleProperties(getParents(sampleName, service), service, logger)
createSampleSheetDict(configMap, control, sampleSheetDict, flowCellName, flowCellOperator,
kohleman
committed
end_type, cycles, lane, gaNumber, index, sample, sampleProperties)
else:
for library in getParents(sampleName, service):
kohleman
committed
libraryProperties = library.getProperties()
gaNumber = libraryProperties[configMap['gaNumber']]
if not gaNumber:
logger.warning('No GA number found for ' + library.getCode())
kohleman
committed
index = getIndex(indx1, indx2, index1ReadLength, indexRead2Length, libraryProperties, configMap)
if not index:
logger.warning('No index found for ' + library.getCode())
kohleman
committed
sample, sampleProperties = getSampleProperties(getParents(library.getCode(), service), service, logger)
createSampleSheetDict(configMap, control, sampleSheetDict, flowCellName, flowCellOperator,
end_type, cycles, lane, gaNumber, index, sample, sampleProperties, library)
kohleman
committed
logger.debug(sampleSheetDict)
sortedSampleSheetList = sampleSheetDict.keys()
sortedSampleSheetList.sort()
writeSampleSheet(flowCellName, sampleSheetDict, sortedSampleSheetList, myoptions, logger, fileName=myoptions.outdir +
kohleman
committed
configMap['sampleSheetFileName'])
def writeSampleSheet(flowCellName, sampleSheetDict, sortedSampleSheetList, myoptions, logger, fileName):
'''
Write the given dictionary to a csv file
'''
newline = lineending[myoptions.lineending]
myFile = fileName + '_' + flowCellName + '.csv'
try:
with open(myFile, 'w') as sampleSheetFile:
for listElement in sortedSampleSheetList:
if myoptions.verbose:
print sampleSheetDict[listElement][0]
kohleman
committed
sampleSheetFile.write(sampleSheetDict[listElement][0] + newline)
kohleman
committed
logger.info('Writing file ' + myFile)
kohleman
committed
except IOError:
logger.error('File error: ' + str(err))
print ('File error: ' + str(err))
kohleman
committed
def main():
'''
Main script
'''
logger = setUpLogger('log/')
logger.info('Started Creation of Sample Sheet...')
kohleman
committed
myoptions = parseOptions(logger)
kohleman
committed
logger.setLevel(logging.DEBUG)
kohleman
committed
flowCellName = myoptions.flowcell
configMap = readConfig(logger)
service = login(configMap, logger)
kohleman
committed
foundFlowCell, containedSamples = getFlowCell(configMap['illuminaFlowCellTypeName'], flowCellName, service, logger)
flowCellName = foundFlowCell.getCode()
flowCellDict = convertSampleToDict(foundFlowCell, configMap)
laneParentDict = getContainedSampleProperties(logger, containedSamples, service)
createHiseqSampleSheet(laneParentDict, flowCellDict, configMap, service, logger, myoptions)