Unconfigured Ad

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

  • Simon Anders
    replied
    1. Could somebody else who ha a Windows system maybe try? Just to know if its a general problem or something specific to GenoMax's system.

    2. GenoMax, could you try to load "_HTSeq" (with the underscore) directly, as follows?

    Code:
    C:\>cd \Python27\Lib\site-packages\HTSeq
    
    C:\Python27\Lib\site-packages\HTSeq>c:\Python27\python.exe
    Python 2.7.4 (default, Apr  6 2013, 19:54:46) [MSC v.1500 32 bit (Intel)] on win32
    Type "help", "copyright", "credits" or "license" for more information.
    >>> import _HTSeq
    Last edited by Simon Anders; 04-18-2013, 12:45 PM. Reason: added full path

    Leave a comment:


  • Simon Anders
    replied
    Interesting. Just ran "dependency walker" on my system, and I don't have IESHIMS.DLL either, although everything is working for me. Also, it's a "delayed dependency", so it wouldn't cause an issue right at loading.

    Leave a comment:


  • GenoMax
    replied
    When I checked _HTseq.pyd with "dependency walker" it is complaining that "IESHIMS.DLL" can't be found. I will try to see if I can diagnose this further.

    Leave a comment:


  • GenoMax
    replied
    Here it is. Looks the same at first glance to me.

    Code:
    Directory of c:\Python27\Lib\site-packages\HTSeq
    
    04/18/2013  11:29 AM    <DIR>          .
    04/18/2013  11:29 AM    <DIR>          ..
    04/18/2013  11:29 AM    <DIR>          scripts
    02/18/2013  11:06 AM            25,079 StepVector.py
    04/18/2013  11:29 AM            32,148 StepVector.pyc
    04/18/2013  11:29 AM            32,097 StepVector.pyo
    04/18/2013  12:21 PM           248,832 _HTSeq.pyd
    02/20/2013  11:19 AM             1,407 _HTSeq_internal.py
    04/18/2013  11:29 AM             2,011 _HTSeq_internal.pyc
    04/18/2013  11:29 AM             2,011 _HTSeq_internal.pyo
    04/18/2013  12:21 PM            83,968 _StepVector.pyd
    04/18/2013  12:17 PM                24 _version.py
    04/18/2013  11:29 AM               168 _version.pyc
    04/18/2013  11:29 AM               168 _version.pyo
    04/18/2013  12:16 PM            32,996 __init__.py
    04/18/2013  11:29 AM            36,726 __init__.pyc
    04/18/2013  11:29 AM            36,495 __init__.pyo
                  14 File(s)        534,130 bytes

    Leave a comment:


  • Simon Anders
    replied
    Could you post a list of all file in C:\Python27\lib\site-packages\HTSeq\, please? With file extensions, if possible. Or, maybe compare with my system, where the directory looks like this:

    Code:
    C:\Python27\Lib\site-packages\HTSeq>dir
     Volume in drive C has no label.
     Volume Serial Number is BC62-98E8
    
     Directory of C:\Python27\Lib\site-packages\HTSeq
    
    18/04/2013  16:22    <DIR>          .
    18/04/2013  16:22    <DIR>          ..
    18/04/2013  16:22    <DIR>          scripts
    18/02/2013  17:06            25,079 StepVector.py
    18/04/2013  16:42            32,148 StepVector.pyc
    18/04/2013  16:42            32,097 StepVector.pyo
    18/04/2013  18:21           248,832 _HTSeq.pyd
    20/02/2013  17:19             1,407 _HTSeq_internal.py
    18/04/2013  16:42             2,011 _HTSeq_internal.pyc
    18/04/2013  16:42             2,011 _HTSeq_internal.pyo
    18/04/2013  18:21            83,968 _StepVector.pyd
    18/04/2013  18:17                24 _version.py
    18/04/2013  16:42               168 _version.pyc
    18/04/2013  16:42               168 _version.pyo
    18/04/2013  18:16            32,996 __init__.py
    18/04/2013  16:42            36,726 __init__.pyc
    18/04/2013  16:42            36,495 __init__.pyo
                  14 File(s)        534,130 bytes
                   3 Dir(s)   5,331,779,584 bytes free

    Leave a comment:


  • GenoMax
    replied
    Lot of people want to use this package on windows so "fighting windows" on your part is worthwhile

    We are not in the clear yet. This is the latest result.
    Code:
    Python 2.7.4 (default, Apr  6 2013, 19:54:46) [MSC v.1500 32 bit (Intel)] on wi
    32
    Type "help", "copyright", "credits" or "license" for more information.
    >>> import HTSeq
    Traceback (most recent call last):
      File "<stdin>", line 1, in <module>
      File "C:\Python27\lib\site-packages\HTSeq\__init__.py", line 9, in <module>
        from _HTSeq import *
    ImportError: DLL load failed: The specified module could not be found.
    >>>

    Leave a comment:


  • Simon Anders
    replied
    Okay, after an hour of fighting with Windows (even the easiest things are hard on an OS that one uses less than once a year), I found the mistake and fixed it.

    Please try HTSeq-0.5.4p2.win32-py2.7.exe and let me know if it still fails.

    Leave a comment:


  • GenoMax
    replied
    Originally posted by Simon Anders View Post
    Seems that "_StepVector.dll" is really missing in this binary package. I'll try to fix it.
    Thanks Simon.

    If you can post an update to this thread when you have a chance to fix that it would be great.

    Leave a comment:


  • Simon Anders
    replied
    Seems that "_StepVector.dll" is really missing in this binary package. I'll try to fix it.

    Leave a comment:


  • GenoMax
    replied
    Originally posted by Simon Anders View Post
    It's hard to say what's wrong if you don't post complete session logs (i.e., all commands typed plus all output and error messages)
    Simon,

    On a windows 7 (64-bit) machine: I installed 32-bit python, NumPy (BTW: the www.scipy.org link you have in the instructions does not work any more, I downloaded NumPy from: https://pypi.python.org/pypi/numpy).

    Trying "import HTSeq" as recommended in your instructions is generating the following error. Googling around seems to indicate that a VS2010 DLL may be missing but I would like to get your take on what is going on.

    Code:
    Python 2.7.4 (default, Apr  6 2013, 19:54:46) [MSC v.1500 32 bit (Intel)] on win
    32
    Type "help", "copyright", "credits" or "license" for more information.
    >>> import HTSeq
    Traceback (most recent call last):
      File "<stdin>", line 1, in <module>
      File "C:\Python27\lib\site-packages\HTSeq\__init__.py", line 9, in <module>
        from _HTSeq import *
      File "_HTSeq.pyx", line 14, in init HTSeq._HTSeq (src/_HTSeq.c:31058)
      File "C:\Python27\lib\site-packages\HTSeq\StepVector.py", line 26, in <module>
    
        _StepVector = swig_import_helper()
      File "C:\Python27\lib\site-packages\HTSeq\StepVector.py", line 22, in swig_imp
    ort_helper
        _mod = imp.load_module('_StepVector', fp, pathname, description)
    ImportError: DLL load failed: The specified module could not be found.
    >>>

    Leave a comment:


  • Simon Anders
    replied
    It's hard to say what's wrong if you don't post complete session logs (i.e., all commands typed plus all output and error messages)

    Leave a comment:


  • mlkerber
    replied
    I'm having the same issue with HTSeq on my PC. Made sure I was using Python 2.7, reinstalled numpy, reinstalled HTSeq, also without success.

    Is there an alternative for getting read counts from SAM file produced by BWA?

    Leave a comment:


  • kakseq
    replied
    hi,

    Thanks for your help. For now I guess I'll run HTSeq on a mac instead and look into seqtk for future use.

    Leave a comment:


  • kmcarr
    replied
    An alternative to HTSeq for randomly sampling a FASTQ file is Heng Li's seqtk. It can subsample a specific number of reads from a file or a fraction of the input as with Simon's HTSeq script.

    Leave a comment:


  • GenoMax
    replied
    I have sent some email to Simon Anders (not sure if he is on this forum). It appears that the current version of HTseq for windows is not working (for me either).

    Leave a comment:

Latest Articles

Collapse

  • SEQadmin2
    Advanced Sequencing Platforms Tackle Neuroscience’s Toughest Genomics Problems
    by SEQadmin2



    Genomics studies in neuroscience face a special challenge due to the brain’s complexity and scarcity of samples. Mapping changes in cell type and state using conventional next-generation sequencing methods remains challenging. Advances in technologies like single-cell sequencing, spatial transcriptomics, and long-read sequencing have opened the door to deeper studies of the brain and diseases like Alzheimer’s, amyotrophic lateral sclerosis (ALS), and schizophrenia.
    ...
    07-09-2026, 11:10 AM
  • SEQadmin2
    Cancer Drug Resistance: The Lingering Barrier to Rising Survival
    by SEQadmin2



    Cancer survival rates have significantly increased in the last few decades in the United States, reaching a combined 70% 5-year survival rate by 2021. Behind this number, there are years of research to find new therapies, drug targets, and early detection methods. But there is one core challenge that keeps slowing down these advances, and it’s about drug resistance.

    There is no single reason why many patients don’t respond to treatment as expected. Cancer is...
    07-08-2026, 05:17 AM
  • GATTACAT
    Reply to Nine Things a Sample Prep Scientist Thinks About Before Sequencing
    by GATTACAT
    Love this - good data definitely starts from good input, and poor input can only give relatively poor data. I particularly like the mention of Nanodrop/absorbance based methods for quantification. It's such a toss up if you'll get an accurate reading or what amounts to a randomly generated number, and a lot of library/sequencing related issues can be traced back to poor quant.
    07-01-2026, 11:43 AM

ad_right_rmr

Collapse

News

Collapse

Topics Statistics Last Post
Started by SEQadmin2, 07-13-2026, 10:26 AM
0 responses
24 views
0 reactions
Last Post SEQadmin2  
Started by SEQadmin2, 07-09-2026, 10:04 AM
0 responses
33 views
0 reactions
Last Post SEQadmin2  
Started by SEQadmin2, 07-08-2026, 10:08 AM
0 responses
21 views
0 reactions
Last Post SEQadmin2  
Started by SEQadmin2, 07-07-2026, 11:05 AM
0 responses
34 views
0 reactions
Last Post SEQadmin2  
Working...