Skip to content

Commit

Permalink
MIN Update email address
Browse files Browse the repository at this point in the history
  • Loading branch information
luispedro committed Aug 30, 2022
1 parent c9b0a8a commit 8310bde
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 8 deletions.
12 changes: 5 additions & 7 deletions NGLess/Utils/Samtools.hs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{- Copyright 2015-2019 NGLess Authors
{- Copyright 2015-2022 NGLess Authors
- License: MIT
-}

Expand Down Expand Up @@ -101,9 +101,7 @@ convertSamToBam samfile = do
-- The output is a newly created temporary file
convertBamToSam :: FilePath -> NGLessIO FilePath
convertBamToSam bamfile = do
(newfp, hout) <- openNGLTempFile bamfile "converted_" "sam"
outputListLno' DebugOutput ["BAM->SAM Conversion start ('", bamfile, "' -> '", newfp, "')"]
C.runConduit $
samBamConduit bamfile .| C.sinkHandle hout
liftIO $ hClose hout
return newfp
makeNGLTempFile bamfile "converted_" "sam" $ \hout -> do
outputListLno' DebugOutput ["BAM->SAM Conversion start ('", bamfile, "' -> <temp>)"]
C.runConduit $
samBamConduit bamfile .| C.sinkHandle hout
2 changes: 1 addition & 1 deletion docs/sources/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -164,7 +164,7 @@ from another programme (not just ``cat``).
Authors
-------

- `Luis Pedro Coelho <https://luispedro.org>`__ (email: coelho@embl.de)
- `Luis Pedro Coelho <https://luispedro.org>`__ (email: luispedro@big-data-biology.org)
(on twitter: `@luispedrocoelho <https://twitter.com/luispedrocoelho>`__)
- Paulo Monteiro
- Renato Alves
Expand Down

0 comments on commit 8310bde

Please sign in to comment.